# 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/kmjyxeq
Go 設計模式 -- 命令模式**
大家好,這裏是每週都陪你進步的網管,假期歸來咱們繼續更新設計模式系列,這次要和大家一起學習的是命令模式,如果你對領域驅動設計感興趣,這個模式一定要好好學,命令模式是 DDD 風格的框架中高頻使用的一個模式。命令模式是一種行爲型模式。它通過將請求封裝爲一個獨立的對象即命令對象,來解耦命令的調用者和接收者,使得調用者和接收者不直接交互。在命令對象裏會包含請求相關的全部信息,每一個命令都是一個操作的請求 ⌘ Read more