# 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/tpxnvya
爲什麼 Go 語言 struct 要使用 tags
在 Go 語言中,struct 是一種常見的數據類型,它可以用來表示複雜的數據結構。在 struct 中,我們可以定義多個字段,每個字段可以有不同的類型和名稱。除了這些基本信息之外,Go 還提供了 struct tags,它可以用來指定 struct 中每個字段的元信息。在本文中,我們將探討爲什麼 Go 語言中需要使用 struct tags,以及 struct tags 的使用場景和優勢。str ⌘ Read more