# 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/tjxun6a
瞭解 Go 中的 init
簡介------在 Go 中,預定義的 init() 函數設置了一段代碼,在你的包的任何其他部分之前運行。這段代碼將在包被導入(點擊跳轉查看)後立即執行,當你需要你的應用程序在一個特定的狀態下初始化時,例如你有一個特定的配置或一組資源,你的應用程序需要用它來啓動。它也可以在導入副作用時使用,這是一種通過導入特定包來設置程序狀態的技術,經常被用於 register 一個包和另一個包,以確保程序考慮 ⌘ Read more