# 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/il635aq
go const 常量幾種好習慣用法**
一、const 語法介紹------------常量是一個簡單值的標識符,在程序運行時,不會被修改的量。 常量中的數據類型只可以是布爾型、數字型(整數型、浮點型和複數)和字符串型。 常量的定義格式:const identifier [type] = value你可以省略類型說明符 [type],因爲編譯器可以根據變量的值來推斷其類型。顯式類型定義:const b string = "abc"隱 ⌘ Read more