# 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/n6rn5xa
Golang Interface 詳解(下)**
iface 和 eface 的區別-----------------  在 Go 語言中,iface 和 eface 是表示接口類型和空接口類型的內部數據結構。  iface 表示一個具體的接口類型,包含了指向接口表的指針和指向數據的指針。接口表中存儲了該接口類型的方法集信息,數據指針則指向實現了該接口的具體類型的值。  eface 則是一個空接口類型,包含了指向類型信息的指針和指向數據的指針。它 ⌘ Read more