# 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/327bdsq
HTTP Router 算法演進**
概述--本文從開發中常見的應用場景 “路由管理” 爲例,介紹三種常用的實現方案背後的數據結構和算法 (代碼實現爲 Go 語言)。應用示例----下面是一個典型的 REST 風格的 API 列表:\\| Method \\| URL \\|\\| --- \\| --- \\|\\| GET \\| /users/list \\|\\| GET \\| /users/dbwu \\|\\| POST \\| /users \\|\\| PUT \\| /users/ ⌘ Read more