# 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/puakeva
Go 語言中常見問題 - 缺少代碼文檔**
文檔(代碼註釋)是編碼的一個重要方面,它可以降低客戶端使用 API 的複雜度,也有助於項目維護。在 Go 語言中,我們應該遵循一些規則使得我們的代碼更地道。下面一起來看看這些規則。每個可導出的元素必須添加文檔說明,無論是結構體、接口、函數還是其他元素。如果它被導出,則必須有文檔說明。通用的文檔說明是添加註釋,註釋前以元素名稱開始,像下面這樣。// Customer is a customer re ⌘ Read more