# 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/nho2ibq
Go 語言中的嵌入【第二部分】:接口嵌入接口**
你好,我是小四,你情商高,也可以叫我四哥~接口嵌入接口在一個接口裏面嵌入另一個接口,是 Go 語言裏最簡單的一種嵌入方式,因爲接口只定義了抽象能力,並沒有爲類型定義新的數據和行爲。我們先看 Effective Go[1] 裏列的示例,一個衆所周知的 Go 標準庫中嵌入接口的示例,給出 io.Reader 和 io.Writer 接口:type Reader interface {    Read( ⌘ Read more