# 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/237iema
Go 開發常用操作技巧 -- 模塊管理**
Go 依賴管理經歷了 3 個階段,GOPATH、Go Vendor、Go Module。GOPATH GOPATH 是 Go 語言的一個環境變量,它是 Go 項目的工作區。目錄有 3 個結構:bin:項目編譯的二進制文件 pkg:項目編譯生成的 lib 包 src:項目源碼 go get 會下載最新版本的包到 src 目錄下。因爲 src 下只能允許一個版本的存在,所以對於 ⌘ Read more