# 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/euncb2q
Go 語言標準庫 net-http 及 go-resty 庫使用**
net/http 介紹Go 語言標準庫 net/http 自身足夠簡單且性能優越,Go 語言的很多 web 框架號稱多麼優秀,都是基於強大的 net/http 庫提供了可擴展性的功能,例如:靜態路由、安全和用戶認證、實時通信等。net/http 庫提供了 http 客戶端和服務端的實現,下面我們通過簡單案例來嘗試下。HTTP 服務端基於 net/ http 實現服務端的用法,通過調用 Listen ⌘ Read more