# 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/3bdunwq
我做 Go 項目的一些實戰經驗**
由於 Golang 不像 Java 一樣有一個統一的編碼模式,所以我們和其他團隊一樣,採用了《Go 面向包的設計和架構分層 [1]》這篇文章介紹的一些理論,然後再結合以往的項目經驗來進行分包:├── cmd/│ └── main.go //啓動函數├── etc│ └── devconf.yaml // 配置文件├── global│ └── global.g ⌘ Read more