# 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/zdyiwcq
這十二個 Go 語法糖,利好每日摸魚**
前言\\-\\- 每門語言都有自己的語法糖,像java的語法糖就有方法變長參數、拆箱與裝箱、枚舉、for-each等等,Go語言也不例外,其也有自己的語法糖,掌握這些語法糖可以助我們提高開發的效率,所以本文就來介紹一些Go語言的語法糖,總結的可能不能全,歡迎評論區補充。可變長參數-----Go語言允許一個函數把任意數量的值作爲參數,Go語言內置了... 操作符,在函數的最後一個形參才能使用... 操作符 ⌘ Read more