# 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/u2astqq
面向切面編程?Go 能實現 AOP 嗎?**
背景寫 Java 的同學來寫 Go 就特別喜歡將兩者進行對比,經常看到技術羣裏討論,比如 Go 能不能實現 Java 那樣的 AOP 啊?Go 寫個事務好麻煩啊,有沒有 Spring 那樣的 @Transactional 註解啊?遇到這樣的問題我通常會回覆:沒有、實現不了、再見。直到看了《Go 語言底層原理剖析》這本書,我開始了一輪認真地探索。Java 是如何實現 AOP 的AOP 概念第一次是在 ⌘ Read more