# 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/v2nvxfq
Go 語言讀取文件的幾種方式**
前言這篇文章將討論如何在 Golang 中讀取文件。我們將使用以下包來處理這些文件。os(https://pkg.go.dev/os) 包提供了一個獨立於平臺的接口來執行操作級操作。 IOutil(https://pkg.go.dev/io/ioutil) 軟件包提供了易於使用的實用程序函數來處理文件,而無需瞭解太多內部實現。 bufio(https://pkg.go.dev/bufiRead more