# 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/dk5d4ea
Go 語言指針保姆級教程!**
哈嘍,大家好,我是 Go 大叔,專注分享 Go 語言知識,一起進入 Go 的大門。普通指針 -------和 C 語言一樣, 允許用一個變量來存放其它變量的地址, 這種專門用於存儲其它變量地址的變量, 我們稱之爲指針變量 和 C 語言一樣, Go 語言中的指針無論是什麼類型佔用內存都一樣 (32 位 4 個字節, 64 位 8 個字節) package mainimport ( "f ⌘ Read more