# 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/pgxag4q
使用 bazel 編譯 go 項目**
【導讀】本文介紹如果通過 bazel 來構建和管理 go 的項目。前言這篇文章主要介紹如果通過 bazel 來構建和管理 go 的項目。這裏是一個最簡單的實例。bazel 是什麼bazel 是一個可以快速構建和測試任意規模軟件的工具,能夠用來編譯 Java,C++,Go,TS,iOS,Android 等大部分的語言。1. 創建工作空間在使用 bazel 的時候,需要先創建一個 WORKSPACE ⌘ Read more