# 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/lngomca
如何編寫異步運行時通用庫?**
如果你正在用 Rust 編寫異步應用程序,在某些情況下,你可能希望將代碼分成幾個子 crate。這樣做的好處是:更好的封裝,在子系統之間有一個 crate 邊界,可以產生更清晰的代碼和定義更良好的 API。不再需要這樣寫:pub(crate)。 更快的編譯,通過將一個大 crate 分解成幾個獨立的小 crate,它們可以併發地編譯。 使用一個異步運行時,編寫異步運行時通用庫的好處是什 ⌘ Read more