# 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/75o42qq
Golang-gin 框架路由原理**
什麼是 http 路由-------------------擼過 http 框架的同學都知道,一個 MVC 模型的 http 框架肯定是少不了路由這一塊的,那麼什麼是路由呢。 簡而言之,http 路由即是一條 http 請求的 “嚮導”,根據 URI 上的路徑,指引該條請求到對應的方法裏去執行然後返回,中間可能會執行一些中間件。路由的種類-------------靜態路由 框架 / 用戶提 ⌘ Read more