# 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/e2rfxaa
理解 Golang 中的 interface 和 interface{}**
【導讀】本文介紹了 Go 語言的接口。在面向對象編程中,可以這麼說:“接口定義了對象的行爲”, 那麼具體的實現行爲就取決於對象了。在 Go 中,接口是一組方法簽名 (聲明的是一組方法的集合)。當一個類型爲接口中的所有方法提供定義時,它被稱爲實現該接口。它與 oop 非常相似。接口指定類型應具有的方法,類型決定如何實現這些方法。讓我們來看看這個例子:Animal 類型是一個接口,我們將定義一個 An ⌘ Read more