# 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/dui75va
解析 Gin 框架底層原理**
0 前言上一週和大家聊了 Golang HTTP 標準庫的實現原理. 本週在此基礎上做個延伸,聊聊 web 框架 Gin 的底層實現原理.1 Gin 與 HTTP1.1 Gin 的背景-----------Gin 是 Golang 世界裏最流行的 web 框架,於 github 開源:https://github.com/gin-gonic/gin其中本文涉及到的源碼走讀部分,代碼均取自 gin ⌘ Read more