# 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/xcwyx6q
go build 打包二進制執行文件與 用 docker 打包 -鏡像 image- 入門**
一、go 打包而進駐文件------------1、安裝 go 環境我們可以從官方 https://go.dev/dl 下載對應系統的 go 安裝文件。 我這裏是 mac 系統,x86 架構,所以我選擇了 安裝完成後執行一下 go version 輸出如下:go version go1.19.7 darwin/amd642、新建一個實驗目錄mkdir hello && cd hello ⌘ Read more