# 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/edm4vva
怎麼阻止一個 Go 程序退出?**
給大家分享一個阻止 Go 程序退出的方法集合,其中還是有一些腦洞大開的方法。你有什麼別的方法可以阻止 Go 程序退出麼, 歡迎在留言區留言。像下面這樣的程序,程序一運行就是退出了,原因在於主 goroutine 執行完了,子 goroutine 雖然存在,但是沒能阻止主 goroutine 的執行:package mainimport "net/http"func main() { go http ⌘ Read more