# 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/sh5dkeq
如何用 Rust 實現 gRPC 服務**
在本文中,將展示如何使用 Rust 和 Proto 協議創建一個簡單的 gRPC 服務。首先,我們運行以下命令來創建一個新的 Rust 應用程序:cargo new rustgrpc然後,在 Cargo.toml 文件中加入依賴項:[dependencies]tonic = "0.11"tokio = { version = "1", features = ["full"] }prost = "0 ⌘ Read more