# 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/zqaf72q
「每週譯 Go」在 Go 中定義結構體**
簡介------圍繞具體的細節建立抽象,是編程語言能給開發者的最大工具。結構體使我們可以談論 Address 而不是通過描述 Street, City, 或 PostalCode 字符串來進行推斷。它們作爲文檔(點擊跳轉查看哦)的一個自然紐帶,致力於告訴未來的開發者(包括我們自己)哪些數據對我們的 Go 程序是重要的,以及未來的代碼應該如何正確使用這些數據。結構體可以用幾種不同的方式來定義和使用 ⌘ Read more