# 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/2o7jqjq
Golang Interface 詳解(上)**
獨特的 “非侵入式” 接口設計是 Go 語言的一亮點。接口使得 Go 這種靜態型語言有了動態型語言的特性,提供了非常大的靈活性。Go 語言的成功,接口功不可沒。Golang 與 "鴨子類型" 的關係-------------------  Ducking Typing , 鴨子類型,是動態編程語言的一種對象推斷策略,它主要關注於對象如何被使用,而不是對象類型的本身。Go 語言作爲一門靜態語言, ⌘ Read more