# 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/unkjara
DDD——從業務架構與到部署架構**
背景最近一直在整理業務架構,之前同一份代碼邏輯,我們最多的邏輯會存在在 4 個 Git 倉庫,一些業務邏輯修改,經常需要同時修改多個地方;同時,同一 Git 倉庫中,一個代碼邏輯也有多處判斷的地方。在此之前,我們已經劃分了業務模塊,但是尚未完全重構完成,因此,我在之前的基礎上,繼續用 DDD 重構代碼。原架構原有的架構,我們存在多個系統,每個系統都是直接連接數據庫,需要使用哪些表,都是直接用。這也 ⌘ Read more