# 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/2nqriiq
Go 如何實現 AOP 切面操作?**
【導讀】本文介紹了在 go 語言中實現 AOP 操作的實踐。golang 如何進行 AOP 操作 怎樣的 AOP 風格最好用 gin 的中間件是如何實現的 前言--我們將一個事件處理標記爲 handler, 那麼 AOP 指代的,就是圍繞這個 handler 的【執行前】【執行後】的切面操作,他可以形象地描述爲: 這種執行流程,容易開發成以下樣式:beforeHandler() ⌘ Read more