# 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/ep3f4la
go 語言的類型系統和接口**
【導讀】本文梳理了 Go 語言的類型,並結合了反射進行介紹。類型--go 語言的類型分爲內置類型和自定義類型,以及類型別名。內置類型go 語言的內置類型是語言層面的底層實現,語法規定好的一些類型,具體有哪些內置類型可以看源碼中用於文檔的虛擬的 builtin 包:https://github.com/golang/go/blob/master/src/builtin/builtin.go自定義類型Read more