# 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/nmeadza
Go 語言跨平臺文件監聽庫 fsnotify 怎麼使用?**
01 介紹Go 語言作爲靜態編譯型語言,每次修改配置文件後,我們都需要重新編譯,修改的配置信息纔可以生效,而動態編譯型語言修改配置文件可以自動生效,相對來說更方便一些。但是,我們可以使用三方開源庫 fsnotify,這是一款非常流行的文件系統監聽庫,很多開源的三方庫也都使用該庫實現監聽文件變更,比如我們之前介紹的非常流行的管理配置信息開源庫 viper。02 fsnotify 源碼解讀NewWat ⌘ Read more