# 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/33hdypa
Go 如何打包與壓縮文件**
文件的打包、壓縮與解壓縮是經常會使用到的功能,我們可以通過 tar、gzip 等工具來完成這些操作。在 Go 中,標準庫archive與compress爲我們提供了這些能力,通過本文示例,你會發現以 Go 編程的方式生成與處理壓縮打包文件也非常簡單。打包和壓縮-----在開始代碼之前,我們需要明確打包和壓縮的概念。打包,又被稱爲歸檔,指的是一個文件或目錄的集合,而這個集合被存儲在一個文件中。 ⌘ Read more