# 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/a4jdr7a
Go 開發常用操作技巧 -- 數組**
在 go 語言中,數組的長度是不可變的,這就導致數組在實際使用中不是很靈活,爲此,設計了動態數組 --Slice(切片)。切片是對數組的一個連續片段的引用,所以切片是一個引用類型。其內部結構包含地址、大小和容量。切片的創建有以下四種方式:make([]Type,length,capacity) make([]Type,length) []Type{} []Type{value1, ⌘ Read more