# 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/7odnchq
Go Project Layout
這是 Go 應用程序項目的基本佈局。它不是核心 Go 開發團隊定義的官方標準;然而,它是 Go 生態系統中一組常見的老項目和新項目的佈局模式。其中一些模式比其他模式更受歡迎。它還具有許多小的增強,以及對任何足夠大的實際應用程序通用的幾個支持目錄。如果你嘗試學習 Go,或者你正在爲自己建立一個 PoC 或一個玩具項目,這個項目佈局是沒啥必要的。從一些非常簡單的事情開始 (一個 main.go 文件綽 ⌘ Read more