# 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/7gs7t6q
【Go 標準庫】詳解 net-http 包實現原理**
一、前言Go 語言自帶的 net/http 包提供了 HTTP 客戶端和服務端的實現,實現一個簡單的 http 服務非常容易,其自帶了一些列結構和方法來幫助開發者簡化 HTTP 服務開發的相關流程,因此我們不需要依賴任何第三方組件就能構建並啓動一個高併發的 HTTP 服務器。HTTP 中客戶端與服務器建立連接發送請求與響應,這個過程可以描述爲如下圖。Server 端需要有 router 、hand ⌘ Read more