# 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/thawdqa
「每週譯 Go」在 Go 中定義方法**
簡介------函數 (點擊可跳轉查看)允許你將邏輯組織成可重複的程序,每次運行時可以使用不同的參數。在定義函數的過程中,你常常會發現,可能會有多個函數每次對同一塊數據進行操作。Go 可以識別這種模式,並允許您定義特殊的函數,稱爲方法,其目的是對某些特定類型(稱爲接收器)的實例進行操作。將方法添加到類型中,不僅可以傳達數據是什麼,還可以傳達如何使用這些數據。定義一個方法----------定義一 ⌘ Read more