# 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/k4otsxa
深入 Go 代碼覆蓋率使用、場景與原理**
一般我們會使用代碼覆蓋率來判斷代碼書寫的質量,識別無效代碼。識別靜態靜態的代碼對於靜態的代碼,要識別代碼沒有被使用,可以使用 golangci-lint 工具golangci-lint run --disable-all --enable unused對於通過單元測試 測試函數代碼的覆蓋率,在 go 生態中,go1.2 提供了 cover 工具。cover 基本用法------------首先 ⌘ Read more