# 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/r4trkmq
使用 Gin 過程中的一些優化**
原文: https://hongker.github.io/2020/04/01/golang-gin/本文介紹 gin 的一些知識點, 如自定義 Response, 中間件等。gin--- Gin 是一個 go 寫的 web 框架,具有高性能的優點。初級的使用方式不介紹了,具體請查閱官方文檔。官方地址:https://github.com/gin-gonic/gin以下介紹基於 gin 開發項 ⌘ Read more