# 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/dx54raa
Golang 反射 type 和 kind 有什麼區別?**
一、前言Go 語言中的反射是由 reflect 包提供支持的,它定義了兩個重要的類型 Type 和 Value 。任意值在反射中都可以理解爲由 reflect.Type 和 reflect.Value 兩部分組成,並且 reflect 包提供了 reflect.TypeOf 和 reflect.ValueOf 兩個函數來獲取任意對象的 Value 和 Type。在 Go 語言程序中,使用 refl ⌘ Read more