# 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/zvhrgoa
「每週譯 Go」理解 Go 中包的可見性**
介紹------當創建一個《Go 中的包》(點擊跳轉查看往期推文)時,最終的目標通常是讓其他開發者可以使用這個包,無論是高階包還是整個程序。通過《導入包》(點擊跳轉查看往期推文),你的這段代碼可以作爲其他更復雜的工具的構建模塊。然而,只有某些包是可以導入的。這是由包的可見性決定的。這裏的 可見性 是指一個包或其他構造可以被引用的文件空間。例如,如果我們在一個函數中定義一個變量,那麼這個變量的可見 ⌘ Read more