# 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/bn5zajq
Go 異常處理機制 panic 和 recover
recover------- 使用 panic 拋出異常後, 將立即停止當前函數的執行並運行所有被 defer 的函數,然後將 panic 拋向上一層,直至程序 crash。但是也可以使用被 defer 的 recover 函數來捕獲異常阻止程序的崩潰,recover 只有被 defer 後纔是有意義的。func main() { print(123) print(456) panic("thr ⌘ Read more