# 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/a54wt6q
Go 函數何時使用帶參數名的返回值**
01 具名返回值簡介在 Go 語言中定義方法或函數時,我們不僅可以給函數(或方法)的返回值指定返回類型,而且也可以指定返回參數的名字。如下函數就指定了返回值的名字:func f(a int) (b int) {    b = a return}在這種使用方式中,返回值參數(這裏是 b)首先會被初始化成返回類型的零值(這裏 int 的零值是 0)。其次,在 return 語句中可以不加任何參數 ⌘ Read more
=