# 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/in2eabq
Golang 1-22 中更好的 HTTP 服務器路由**
對於 Web 開發的人來說,使用 golang 語言無疑是個明智的選擇。但是 golang 本身標準庫提供的功能相對有限,尤其是需要撰寫複雜的路由和路勁匹配(這在微服務中很常見)時的多路複用功能,必須要配合使用第三方的多路複用器(比如 gorilla/mux)。但是最新一個好消息是,golang 1.22 中的標準 net/http 將默認提供增強模式匹配能力包多路複用器。本文我們就一起來學習一下 ⌘ Read more