# 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/uu4zzpq
理解 Go 中的數組和切片**
介紹--在 Go 中,數組和切片是數據結構,由元素的有序序列組成。當你想處理許多相關的值時,這些數據集合是很好的選擇。它們可以讓你把相同類型的數據放在一起,降低代碼量,並同時對多個值執行相同的方法和操作。雖然 Go 中的數組和切片都是元素的有序序列,但兩者之間有很大的區別。Go 中的數組是一個數據結構,由一個有序的元素序列組成,其容量在創建時已經定義。一旦數組分配了它的大小,就不能再改變它的大小。 ⌘ Read more