# 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/e22d3rq
真實世界的 Go 設計模式 - 資源獲取即初始化**
RAII,全稱資源獲取即初始化(英語:Resource Acquisition Is Initialization),它是在一些面嚮對象語言中的一種慣用法。RAII 源於 C++,在 Java,C#,D,Ada,Vala 和 Rust 中也有應用。1984-1989 年期間,比雅尼 · 斯特勞斯特魯普和安德魯 · 柯尼希在設計 C++ 異常時,爲解決資源管理時的異常安全性而使用了該用法,後來比雅尼 ⌘ Read more