# 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/w6tfihq
Go 開發常用操作技巧 -- 結構體**
結構體是由一系列相同或不相同類型數據組成的數據集合。 結構體的成員(字段)的特性:字段名必須唯一 字段有自己的類型和值 字段的類型也可以是結構體,甚至是字段所在結構體的類型 結構體定義格式如下:type 類型名 struct{  字段1 類型1  字段2 類型2  //...}結構體初始化type Mystruct struct { Name    string Address ⌘ Read more