# 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/olsu5cq
Golang 不可不知的 7 個併發概念**
併發性支持是 Golang 最重要的原生特性之一,本文介紹了 Golang 中和併發性相關的 7 個概念。原文: Golang: 7 must-know concurrency related concepts[1]併發是 Go 編程語言的基本特性,意味着程序可以同時執行多個任務。Golang 的併發獨特而強大,其內置的輕量級協程 (goroutine) 和通道 (channel) 支持創建可 ⌘ Read more