# 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/srktuzq
Go 語言爲什麼建議定義零值可用的結構體?**
大家好,我是 frank。 歡迎大家關注「Golang 語言開發棧」公衆號。 01 介紹 在 Go 語言中,通過聲明或者通過調用 new 爲變量分配存儲空間,或者通過複合字面量或調用 make 創建新值時。如果未提供顯式初始化,則會爲變量或值指定默認值,此類變量或值的每個元素都設置爲其類型的零值。02 Golang 類型的零值 在 Go 語言中,原生類型都有默認值,即類型的零值。布爾型 ⌘ Read more