# 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/7ddla2q
如何獲取 Go 服務依賴包**
在服務治理中,我們有時需要統計業務方服務的依賴包版本號使用情況,以便進行升級和版本兼容,通過 Go 官方提供的 debug.ReadBuildInfo 可以很方便的實現。debug.ReadBuildInfoReadBuildInfo 是 Go 標準庫提供的方法,通過該方法可以讀取打包程序的構建信息,裏面就包括我們想要的依賴包和版本號信息。// ReadBuildInfo returns the ⌘ Read more