# 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/v7wd2ma
細嗦 Golang 的指針**
與 C 語言一樣,Go 語言中同樣有指針,通過指針,我們可以只傳遞變量的內存地址,而不是傳遞整個變量,這在一定程度上可以節省內存的佔用,但凡事有利有弊,Go 指針在使用也有一些注意點,稍不留神就會踩坑,下面就讓我們一起來細嗦下。1. 指針類型的變量在 Golang 中,我們可以通過取地址符號 & 得到變量的地址,而這個新的變量就是一個指針類型的變量,指針變量與普通變量的區別在於,它存的是內存地址, ⌘ Read more