# 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/q3d77gq
golang select 機制**
來源: 愛發白日夢的後端在 Go 語言中,select 是一種用於處理多個通道操作的控制結構。它可以用於在多個通道之間進行非阻塞的選擇操作。select 語句由一系列的 case 子句組成,每個 case 子句表示一個通道操作。select 語句會按照順序依次檢查每個 case 子句,並執行其中可執行的操作。select 的作用主要有以下幾個方面:多路複用通道select 可以同時監聽多個通道上的 ⌘ Read more