# 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/dcffhcq
golang 中 channel 的詳細使用、使用注意事項及死鎖分析**
什麼是 channel 管道--------------它是一個數據管道,可以往裏面寫數據,從裏面讀數據。channel 是 goroutine 之間數據通信橋樑,而且是線程安全的。channel 遵循先進先出原則。寫入,讀出數據都會加鎖。channel 可以分爲 3 種類型:只讀 channel,單向 channel 只寫 channel,單向 channel 可讀可寫 channe ⌘ Read more