# 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/kxz6odq
一圖掌握 golang 中 IO 包的關係**
大家好,我是漁夫子。今天在知乎上看到這樣一個問題:Golang 的 IO 庫那麼多,我該怎麼選。今天就跟大家聊聊這個問題。首先,我們要知道,golang 中有哪些 IO 包。我整理了一下,大概有 io 包、bufio 包、ioutil、os、net 等。其次,要知道這些 io 包的各自的定位。我整理了一張圖供大家參考:我們大致講解下上圖:io:基礎的 IO 庫,提供了 Reader 和 Write ⌘ Read more