# 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/tewcd2a
聊聊 godoc、go doc 與 pkgsite
查看文檔是開發人員日常必不可少的開發活動之一。Go 語言從誕生那天起就十分重視項目文檔的建設,爲此 Go 爲 gopher 們提供了多種豐富的文檔查看工具,除了在 Go 官方網站 [5] 可以在線查看到最新穩定發佈版的文檔之外,Go 還爲開發人員提供了本地離線查看文檔的工具,比如:godoc[6]、go doc 以及 pkgsite[7]。在這篇短文中,我們就來分別看看這三個 Go 文檔查看工具。 ⌘ Read more