# 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/db7kaaq
深入理解 go 原子操作**
什麼是原子操作?\\-\\-\\-\\-\\-\\-\\-\\- 原子操作是變量級別的互斥鎖。如果讓我用一句話來說明什麼是原子操作,那就是:原子操作是變量級別的互斥鎖。簡單來說,就是同一時刻,只能有一個 CPU 對變量進行讀或寫。 當我們想要對某個變量做併發安全的修改,除了使用官方提供的 Mutex,還可以使用 sync/atomic 包的原子操作, 它能夠保證對變量的讀取或修改期間不被其他的協程所影響。我們可以用下圖來表示: ⌘ Read more