# 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/c3ieffq
適用於 Go 項目的 Makefile 指南**
大家好,我叫謝偉,是一名使用 Go 語言的後端開發者。本文章的主題是: 編寫適用於 Go 項目的 Makefile 指南。1. 前提:會使用 Makefile 會使用 Go 編寫項目 編寫項目的過程中,經常需要對文件進行編譯和執行,查看功能開發或者修復的 Bug 是否正確。你當然可以直接執行 go build 命令用來編譯,執行 go run命令來執行。在編寫 Go 項目其實還會經常執 ⌘ Read more