# 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/s4yvlyq
go 讀取 yaml 文件**
一、介紹----yaml 作爲配置文件,基本在 go 中,被認爲默認的配置文件格式了。 yaml 格式介紹,詳見 https://www.ruanyifeng.com/blog/2016/07/yaml.html基本語法規則如下:大小寫敏感 使用空格縮進表示層級關係 縮進的空格數目不重要,只要相同層級的元素左側對齊就可以了。 我們看下面的 yaml 文件,新建 redis. ⌘ Read more