# 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/jkrdavq
構建 Go 應用 docker 鏡像的十八種姿勢**
修煉背景----我夜以繼日,加班加點開發了一個最簡單的 Go Hello world 應用,雖然只是跑了打印一下就退出了,但是老闆也要求我上線這個我能寫出的唯一應用。項目結構如下:.├── go.mod└── hello.gohello.go 代碼如下:package mainfunc main() {    println("hello world!")}並且,老闆要求用 docker 部署,顯 ⌘ Read more