# 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/slldrtq
Go 安裝配置 golint
【導讀】本文介紹了 golint 代碼檢查工具。一. Golint 介紹Golint 是一個源碼檢測工具用於檢測代碼規範 Golint 不同於 gofmt, Gofmt 用於代碼格式化 Golint 會對代碼做以下幾個方面檢查 package 註釋 必須按照 “Package xxx 開頭” package 命名 不能有大寫字母、下劃線等特殊字符 struct、int ⌘ Read more