# 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/uifsaha
golang 反射(reflect)**
golang 反射(reflect)------------------反射是現代程序必備的元素,用於在 運行時 獲取程序元素,如對象等的 元數據,實現動態識別類型及其結構,以及相關的語義信息。反射在程序中應用非常多,例如:動態生成數據:json 序列化 / 反序列化;orm 映射, proxy 透明代理對象 動態調用方法:plugin 實現 框架自動處理程序:annotation t ⌘ Read more