# 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/hhgp2tq
一篇文章帶你瞭解 Go 語言基礎之切片補充**
前言--Hey,大家好呀,我是星期八,這次咱們繼續學習 Go 基礎之切片補充扒。make 疑雲-------我們知道,可以通過 make 創建切片。var names = make([]string,10,10)這句話表示動態創建了一個切片,切片中的元素數量爲 10 個,切片的容量也爲 10 個。 你有疑惑嗎???切片的數量和容量是什麼???他倆什麼關係???切片本質----其實切片,終究是一個 ⌘ Read more
=