# 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/tb7igfa
Go 的 json 省略符 omitempty 和 - 兩種方式詳解**
一、介紹----官方文檔 https://pkg.go.dev/encoding/json 有介紹omitempty 如果字段的值爲空值(定義爲 false、0、nil 指針、nil 接口值以及任何空數組、切片、映射或字符串),該選項在編碼期間忽略該字段 "-" 標籤在編碼和解碼時總是省略字段 二、omitempty 空值省略----------------2.1 json 在結構體重 ⌘ Read more