# 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/6rbr4la
Go 應用程序設計標準**
01 介紹衆所周知 Go 語言官方成員 Russ Cox 曾向 Go 社區迴應並沒有 Go 應用程序設計標準。但是,爲什麼本文還要使用這個標題呢?因爲團隊達成一個共識(標準),制定一些團隊成員都要遵循的規則,可以使我們的應用程序更容易維護。本文介紹一下我們應該怎麼組織我們的代碼,制定團隊的 Go 應用程序設計標準。需要注意的是,它不是核心 Go 開發團隊制定的官方標準。02 定義 domain 包 ⌘ Read more