# 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/o3dhedq
Go 語言中常見 100 問題 - 項目結構混亂**
項目結構混亂創建一個好的 Go 項目結構並不是一件容易的事情,由於 Go 語言在設計包和模塊方面提供了很大的自由度,因此在這方面沒有通用的最佳實踐。本文將首先討論創建項目的常用組織結構,然後討論一些最佳實踐,給出改進項目組織方式的方法。項目結構Go 語言維護者對構建 Go 項目結構沒有嚴格的約定,在 github 上有一個稱爲標準 Go 項目結構的模板(https://github.com/golRead more