# 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/o6km63q
一文讀懂 Go Http Server 原理**
hello 大家好呀,我是小樓,這是系列文《Go 底層原理剖析》的第二篇,依舊是分析 Http 模塊,話不多說,開始。從一個 Demo 入手俗話說萬事開頭難,但用 Go 實現一個 Http Server 真不難,簡單到什麼程度?起一個 Server,並且能響應請求,算上包名、導入的依賴,甚至空行,也就只要 15 行代碼:package mainimport ( "io" "net/http")fu ⌘ Read more