# 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/uefkkra
一文帶你瞭解 Go mod!**
什麼是 Go mod? go mod 是 Go 語言的模塊管理工具, 可用來代替傳統的 GOPATH。go mod 和 GOPATH 的區別有哪些?go mod 的代碼開發不侷限於某一個目錄,GOPATH 的代碼開發必須在 GOPATH 的 src 目錄下 go mod 的依賴無需手動管理,可執行一條命令後自動管理依賴, GOPATH 的包依賴需要一個一個解決 go mod 在使用之前 ⌘ Read more