# 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/wpdrotq
Golang 設計模式之適配器模式**
1 適配器模式本期繼續和大家探討 Golang 設計模式這一主題. 今天,我們來聊一聊設計模式中的 "適配器模式".適配器模式的作用是能夠實現兩個不兼容或弱兼容接口之間的適配橋接作用,該設計模式中會涉及到如下幾個核心角色:• 目標 target:是一類含有指定功能的接口 • 使用方 client:需要使用 target 的用戶 • 被適配的類 adaptee:和目標類 target 功 ⌘ Read more