# 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/kwofkua
用 Rust 構建實時協同文本編輯器**
Rust 🦀 以其極快的性能、內存安全性和強大的併發特性而聞名。這些特性使其成爲構建實時應用(如協作文本編輯器)的絕佳選擇。我們要構建什麼-------我們將構建:一個處理多用戶的 WebSocket 服務器。 一個用於實時同步客戶端編輯的廣播系統。 一個簡單的前端,用於可視化實時更改。 第一步:項目設置 🛠️------------首先,創建一個新的 Rust 項目:cargo ⌘ Read more