# 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/42izwdq
Go negroni 對於第三方中間件的使用**
negroni 本身是一箇中間件,不過它也提供了拓展,以幫助我們更簡單地實現自己想要的功能的中間件。那麼,我們究竟該如何實現中間件,才能能夠封裝到 negroni 中,從而通過 negroni 來調用呢?可以通過一個簡單的例子分析:package mainimport ("fmt""net/http""github.com/urfave/negroni""github.com/phyber/neg ⌘ Read more