# 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/3lljtcq
使用 Makefile 構建你的 Go 項目**
作者:掘金——Pokeya https://juejin.cn/post/7241395886856028197 Makefile 是一個強大且靈活的構建工具,具備自動化構建、處理依賴關係、任務管理和跨平臺支持等優點。通過編寫和使用 Makefile,開發者可以簡化項目的構建過程,提高開發效率,並實現自動化的構建和發佈流程。 在許多開源項目和工具中,Makefile 被廣泛選擇作 ⌘ Read more