# 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/gzplewa
Go 設計模式 -- 中介者,最後的模式!**
大家好,這裏是每週都在陪你一起進步的網管~!今天繼續學習設計模式,也是我們要學習的最後一個設計模式—中介者模式,對這個模式有一點了解後會覺得它跟我們已經學過的觀察者模式挺像,但是兩者還是有些區別的,使用場景也不一樣,具體我們放在最後再講,先來一起學習中介者模式。中介者模式是一種行爲設計模式, 能讓程序減少對象之間混亂無序的依賴關係。 該模式會限制對象之間的直接交互, 迫使它們通過一箇中介者對象進行 ⌘ Read more