# 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/p6ulanq
Gin 優化那些事**
本文介紹 gin 的一些知識點, 如自定義 Response, 中間件等。 gin--- Gin 是一個 go 寫的 web 框架,具有高性能的優點。初級的使用方式不介紹了,具體請查閱官方文檔。官方地址:https://github.com/gin-gonic/gin以下介紹基於 gin 開發項目的一些常用模塊。自定義 Response------------每個公司都會自定義接口的數據結構。 ⌘ Read more