# 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/ib557vq
go 官方自帶限流庫超詳細教程來了,開發者必備**
golang.org/x/time/rate 是 Go 語言官方提供的一個限流庫,用於在程序中限制特定操作的速率。該庫使用了令牌桶算法,可以通過設置一個速率限制 r(即每秒可以執行的操作數)和一個容量 b(即令牌桶的大小)來控制操作的速率。下面是該庫的詳細使用教程。1.Allow(l Limit) bool: 該方法用於檢查是否可以處理一個事件(或一個令牌),返回一個布爾值。如果令牌桶中有足夠的令 ⌘ Read more