# 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/ybxw42q
goroutine 源碼分析,直擊併發底層實現**
\\*概述Go 語言中的 goroutine 是一種輕量級線程, goroutine 之間通過 channel 進行通信。使用 goroutine 可以方便地編寫併發程序。本文將介紹 goroutine 的使用方法、調度原理、同步處理及實戰案例等內容。1、goroutine 簡介goroutine 是 Go 語言提供的輕量級線程, 具有以下特點 每個 goroutine 佔用內存很小, 只有 2KB ⌘ Read more
*