# 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/srpvr4a
用 Go 快速開發一個 RESTful API 服務**
何時使用單體 RESTful 服務-----------------對於很多初創公司來說,業務的早期我們更應該關注於業務價值的交付,而單體服務具有架構簡單,部署簡單,開發成本低等優點,可以幫助我們快速實現產品需求。我們在使用單體服務快速交付業務價值的同時,也需要爲業務的發展預留可能性,所以我們一般會在單體服務中清晰的拆分不同的業務模塊。商城單體 RESTful 服務---------------我 ⌘ Read more