# 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/pvy2e4a
Go 服務端開發,請牢記這幾條**
服務端開發一般是指業務的接口編寫,對大部分系統來說,接口中 CURD 的操作佔了絕大部分。然而,網絡上總有調侃 “CURD 工程師” 的梗,以說明此類開發技術並不複雜。但我個人認爲,如果僅僅爲了找個框架填充點代碼完成任務,確實是簡單,但是人類貴在是一根“會思考的蘆葦”,如果深入的思考下去,在開發過程中還是會碰到很多通用的問題的。我們就用 go 的開發框架舉例子,它有兩種分化形式:一種以 beego ⌘ Read more