# 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/iceaidq
一文讀懂主流 web 框架中路由的實現原理**
一、什麼是路由-------路由,就是 url 地址到業務處理代碼的映射。當用戶輸入一個 url 地址時,服務器該知道該用戶返回什麼內容。比如,當用戶點擊登錄時,服務器應該做登錄相關的事情,並給用戶返回登錄成功或失敗的頁面。當用戶點擊退出時,服務器應該做和退出相關的事情(比如清理用戶登錄的數據),並返回給用戶退出之後的頁面。一個 url 到一個具體的處理函數之間的映射叫做一條路由。多條路由組成路由 ⌘ Read more