# 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/fe4eplq
Golang 池化技術實現**
在 golang 中,經常會出現需要發送短信、通知或其它內容的需求,而這些事情不需要即時性且有點耗時。我們最常用的方法是使用一個 goroutine 來做這個事情。 例如:在訂單發貨後,我們需要給用戶發送一個短信通知。func SendSms(tmpl string,msg string){ // 發送短信代碼}func OrderShipment(){ // 訂單發貨邏輯 / ⌘ Read more