# 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/pnmjoqa
Golang 實現 API 網關實戰**
【導讀】本文介紹了 Go 實現微服務網管的實踐。在最近的一個項目中,採用了微服務架構 -go-kit進行後端的開發。在微服務架構風格中,一個大應用被拆分成爲了多個小的服務系統提供出來,這些小的系統他們可以自成體系,也就是說這些小系統可以擁有自己的數據庫,框架甚至語言等,因此我們需要設計一個 API 網關(API Gataway),其實網上已經有較多現成的實現框架,但是本項目的需求是比較簡單的,因此 ⌘ Read more