# 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/tisnyaq
golang 源碼分析:自定義 proto 插件**
在使用 protoc 的時候,可以通過指定不同的插件來生成不同的代碼,它的參數統一是 xxout 結尾的,制定了插件參數,就會到 path 下搜索 protoc-gen-xx 的插件。比如 protoc 通過 --fooout 搜索插件 可執行文件 protoc-gen-foo, 也可使用參數 protoc --plugin=protoc-gen-foo=/path/to/prot ⌘ Read more