# 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/fesb5qa
Go 命令行解析神器入門 - 10 分鐘上手 flag 包**
Go 語言內置的 flag 包提供了命令行參數解析的功能。可以將命令行中的參數輸入轉換爲程序定義的變量值, 使程序具備靈活的用戶交互能力。本文將介紹 flag 包的使用方法, 主要內容包括 flag 包簡介 flag 基礎用法 flag 參數類型 自定義 flag 解析 flag.NewFlagSet flag 其他函數 flag 實戰示例 1. flag ⌘ Read more