# 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/k6qf27a
Go 1-18 新特性:範型**
Go 語言的 1.18 版本還未正式發佈,但我們已經可以用它的 RC 版本嘗試一些新特性。今天來聊聊 Go 1.18 裏的範型(Generics)。安裝--Generics 是 1.18 的新特性,在目前的發佈版 1.17 裏不支持,因此需要手動安裝 RC 版:go install golang.org/dl/go1.18rc1@latest安裝完後,你的GOPATH或者GOBIN裏會出現一個go ⌘ Read more