# 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/hutpcia
Go 語言中部分實現的接口 -技巧-**
你好,我是小四,你情商高,也可以叫我四哥~Go 語言不同於我們所知道的其他語言,比如 Java、C# 等。常常使用鴨子類型處理依賴關係。通過聲明一個本地接口,指定想要依賴的方法,但是不提供具體的實現,就像下面這樣:// Notice that the interface does not even need to be exported// for an outside dependency to ⌘ Read more