# 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/etuy6zq
怎麼把自己造的輪子發佈到 Go Module 上**
我們在開發 Go 項目時,經常會使用到一些外部依賴包。它們一般都是通過形如go get example.com/xxx的命令形式獲取到本地使用。本着開源精神,如果我們想將自己開發的包共享出去,讓其他人也能使用go get命令獲取到它們,應該如何做呢?本文將以開源至 Github 平臺爲例,展示其流程。建立倉庫----首先,在 github 平臺建立倉庫,設置想要開源的 Go 庫名。這裏將項目名取爲 ⌘ Read more