# 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/3s6atfq
Golang protobuf 使用教程**
【導讀】本文介紹了 go 語言 protobuf 的使用。一、安裝1.protoc protoc 是 protobuf 文件(.proto)的編譯器,可以藉助這個工具把 .proto 文件轉譯成各種編程語言對應的源碼,包含數據類型定義、調用接口等。通過查看 protoc 的源碼(參見 github 庫)可以知道,protoc 在設計上把 protobuf 和不同的語言解耦了,底層用 c++ 來實 ⌘ Read more