# 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/seqcojq
一篇文章教會你 Go 語言基礎之反射**
前言--Hey,大家好呀,我是碼農,星期八!,我們以前學的呀,都屬於正向定義變量,正向開發!但是有沒有什麼辦法能反着來呢?根據變量獲取類型等操作。一起來看看 Go 的反射吧!!!什麼是反射-----反射,嗯...,就是反着的意思唄,就是把東西反過來。比如這樣的一個很簡單的代碼。var a int = 3fmt.Println(a)我們當然知道a變量是int類型,但是反過來想,程序是怎麼知道a是in ⌘ Read more
=