# 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/do7nl2a
3 分鐘帶你用 Go 語言實現枚舉**
Go 語言是沒有 enum 這個枚舉關鍵字的。 那 Go 語言裏面又是怎麼處理枚舉這個問題的呢?我們這篇文章講解下!需要枚舉的場景-------我們在處理人的姓名的時候,一般都是男或者女,或者最大再加一個未知,不會有其他類型吧。像上面這種常見,我們一般就會使用枚舉處理。我們會定義一個變量,希望他能只能賦 男、女、未知 這三種值。如果是在其他語言:from enum import Enumclas ⌘ Read more