# 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/nt4ijha
深入 Golang channel 基礎用法都在這了!**
前言 --------你好哇!本文是「Golang 併發編程」系列的第 2 篇文章~現在感覺這個坑開得有點大,沒個一年半載的講不清楚了……上篇文章我們學習了 Go 語言中的 Goroutine 創建和調度的機制,理解了一條簡單的 go 命令背後的原理。本文開始,將深入研究 go 語言中的 channel,將拆分爲基礎用法、實用場景、反面教材、源碼實現四篇文章來介紹,歡迎關注追更~本文將介紹 ch ⌘ Read more