# 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/rjivnvq
一個用 go 實現的有限狀態機**
easyfsm 之前看過新亮老哥的 go-fsm-order,感覺還不錯。最近在遷移項目的時候,發現有多處業務存在一些狀態的流轉,所以就基於 go-fsm-order 做了重改,讓它可以在不同的業務場景下使用。 爲什麼不使用 looplab/fsm,star 挺多的啊。不是特別喜歡,每次實例化 fsm 都需要重新傳遞對應 events(雖然我們可以統一封裝),我更期望在項目啓動時把此項目涉及到 ⌘ Read more