# 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/gat7lwq
Go logrus 日誌框架詳解**
【導讀】本文介紹了 logrus 日誌庫和與 iris web 框架的結合。 logrus 特性完全兼容 golang 標準庫日誌模塊:logrus 擁有六種日誌級別:debug、info、warn、error、fatal 和 panic,這是 golang 標準庫日誌模塊的 API 的超集。如果您的項目使用標準庫日誌模塊,完全可以以最低的代價遷移到 logrus 上。 可擴展的 Hook ⌘ Read more