# 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/ospqc3a
3 分鐘帶你掌握 go mod 導入本地包**
對於一個項目來說,不可能所有代碼都自己寫。 所以這就涉及到引入別人的代碼,得有效避免重複造輪子,在 Go 語言裏面,這個操作也叫引包。Go 語言誕生之後,升級了很多次一直都沒有官方的包管理工具。一直到 1.11 版纔出現 go module 這個官方的管理工具。於是現在的大部分 Go 語言新項目都在使用 go module 來進行包管理。我們用得非常多的是使用 go module 引入 Gith ⌘ Read more