# 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/3tjlzbq
context-Context Code Review
概述--context.Context 類型表示上下文信息,作用是在 API 通信、進程通信、函數調用之間傳遞超時時間、取消信號和其他數據值。規則--使用 context.Context 時應遵循以下規則,以保證不同包之間的接口一致性,並啓用靜態分析工具來檢查上下文的鏈路傳播和可能產生的數據競態。不要將 context.Context 嵌入結構體類型,應該明確地將其作爲函數參數傳遞,並且應該是第一 ⌘ Read more