# 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/nnip2wa
Go 語言併發模式代碼模板**
前言文章代碼量較多,如果是初次閱讀,建議瞭解每種模式的基礎用法即可,工作中有實際的應用開發場景時,再回來研究代碼細節。經典模式 (pipeline + selector)這裏有一個來自 Go 官方博客的例子,通過管道篩選質數並打印。質數篩選器第一個版本-----package mainimport "fmt"// 生成數字併發送到通道func generate(ch chan int) { ⌘ Read more