# 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/kckpw4q
Go 語言函數實現接口的 N 個實踐技巧**
/ Go 語言函數類型實現接口手冊 /函數是 Go 語言中非常重要的類型, 它也可以直接實現接口, 這爲我們提供了一種更簡潔優雅的編程方式。本文將剖析 Go 語言中的函數類型如何實現接口。本文主要內容如下 1. 接口定義 2. 函數實現接口 3. 通過接口調用函數 4. 不同函數實現同一接口 5. 函數帶接收者也可以實現接口 6. 空接口實現 7. ⌘ Read more