# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/srhgg5q
Golang 設計模式之裝飾器模式**
1 裝飾器模式本期和大家交流的是設計模式中的裝飾器模式.下面聊聊關於裝飾器模式的基本定義:裝飾器模式能夠在不改變原對象結構的基礎上,動態地爲對象增加附屬能力. 在實現思路上,裝飾器模式和 “繼承” 一定的類似之處,但是兩者側重點有所不同,可以把裝飾器模式作爲 “繼承” 的一種補充手段.這麼幹講概念顯得過於抽象,下面我們通過一個實際案例,來和大傢俱體地剖析一下有關於裝飾器模式的實現思路:JwsYMP ⌘ Read more