# 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/3srudxa
淺析 gowatch 監聽文件變動實現原理**
剛開始接觸 go 時,發現 go 程序和 php 程序的其中一個不同是 php 是解釋性語言,go 是編譯型語言,即每次在有程序改動後,需要重新運行 go run 或 go build 進行重新編譯,更改才能生效,實則不便。於是乎在網絡上搜索發現了 gowatch 這個包,該包可通過監聽當前目錄下相關文件的變動,對 go 文件實時編譯,提高研發效率。那 gowatch 又是如何做到監聽文件變化的呢 ⌘ Read more