# 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/frurrqq
如何在 Go 中使用變量和常量**
變量 是一個需要掌握的重要編程概念。它們是代表你在程序中使用的值的符號。本教程將介紹一些變量基礎知識和在你創建的 Go 程序中使用它們的最佳實踐。理解變量----用術語來說,變量將存儲位置分配給與符號名稱或標識符相關的值。我們使用變量名來引用計算機程序中存儲的值。我們可以將變量視爲帶有名稱的標籤,您可以將其綁定到值上。假設我們有一個整數 1032049348 ,我們希望將它存儲在一個變量中,而不 ⌘ Read more