# 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/xoqz3tq
夥計,Go 項目怎麼使用枚舉?**
前言\\-\\- 哈嘍,大家好,我是asong。枚舉是一種很重要的數據類型,在java、C語言等主流編程語言中都支持了枚舉類型,但是在 Go 語言中卻沒有枚舉類型,那有什麼替代方案嗎?本文我們來聊一聊這個事情;爲什麼要有枚舉-------我們以java語言爲例子,在JDK1.5之前沒有枚舉類型,我們通常會使用int常量來表示枚舉,一般使用如下:public static final int COLORR ⌘ Read more