# 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/prlsg2q
golang 源碼分析:httptest**
httptest 是 golang 官方源碼自帶的測試包,它可以非常方便獲取 http 請求結構體,http 返回值結構體,以及在本地啓動一個 loopback 的 server,方便我們做單測。對於 go 的 web 應用程序中往往需要與其他系統進行交互, 比如通過 http 訪問其他系統, 此時就需要一種方法用於打樁來模擬 Web 服務端和客戶端,httptest 包即 Go ⌘ Read more