# 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/warqhrq
一篇文章帶你搞定 Go 語言基礎之文件操作**
前言--Hey,大家好呀,我是 Go 進階者,這次咱們來說一下文件操作。文件操作就簡單了,像打開 word 了,excel 了,都是文件操作,當然,我們肯定是不能直接操作 word 的我們就從最簡單的普通文件開始叭!打開和關閉文件-------package mainimport "os"func main() { //os.Open是隻讀模式 fileObj, err := os.O ⌘ Read more
=