# 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/hm6na3q
Golang Slice 詳解**
什麼是切片Go 語言中的切片 (slice) 的本質是對數組的封裝, 其描述了一個數組的片段。切片實際上是一個結構體,其包含了三個字段,如下圖所示type slice struct {   array unsafe.Pointer   len   int   cap   int}1.array: 是一個非安全類型的指針,指向底層數組,是一個連續的內存塊。 2.len: 指 slice 的實際長度 ⌘ Read more