# 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/t47dtfa
slog:Go 官方版結構化日誌包**
Go 自誕生以來就在其標準庫 [1] 內置了 log 包作爲 Go 源碼輸出日誌 [2] 的標準組件,該包被廣泛應用於 Go 標準庫自身以及 Go 社區項目中。不過,針對 Go 標準庫 log 包,Go 社區要求改進的聲音始終不斷,主流聲音聚焦在以下幾點:log 包是爲了方便人類可讀而設計的,不支持便於機器解析的結構化日誌 (比如像 zap 那樣輸出 json 格式的日誌 [3]); 不支持 ⌘ Read more