# 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/vo4s2fq
用 Rust 進行 TUI 編程:Cursive 庫**
在本文中,我們將探索使用 Rust 進行文本用戶界面 (TUI) 編程。TUI 提供了一種通用的方法來創建具有豐富圖形用戶界面的交互式命令行應用程序。我們將使用 Cursive 庫,一個流行的用於構建 TUI 應用程序的 Rust 庫。Cursive 使用聲明式 UI:用戶定義佈局,然後 Cursive 處理事件循環。Cursive 還處理大多數輸入 (包括鼠標點擊),並將事件轉發到當前聚焦的視圖 ⌘ Read more