# 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/agsrp2q
真實世界的 Go 設計模式 - 原型模式**
原型模式是創建型模式的一種,其特點在於通過 “複製” 一個已經存在的實例來返回新的實例, 而不是新建實例。被複制的實例就是我們所稱的“原型”,這個原型是可定製的。如果你有一個對象,  並希望生成與其完全相同或者類似的一個複製品,  你該如何實現呢?  首先,  你必須新建一個屬於相同類的對象,或者類似的對象,  然後你必須遍歷原始對象的所有成員變量,  並將成員變量值複製到新對象中。在 Go 生態 ⌘ Read more