# 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/pwvn62a
Golang 簡潔架構實戰**
作者:bearluo,騰訊 IEG 運營開發工程師 文中項目代碼位置:https://github.com/devYun/go-clean-architecture由於 golang 不像 java 一樣有一個統一的編碼模式,所以我們和其他團隊一樣,採用了 Go 面向包的設計和架構分層這篇文章介紹的一些理論,然後再結合以往的項目經驗來進行分包:├── cmd/│   └── main.go // ⌘ Read more