# 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/tlsi5ma
Go-web 如何一步步整合 swagger-ui
我們先說存在的問題:1、註釋本地生成,會因爲 swagger 版本不一致出現問題,出現各種 git 衝突,需要採用打包編譯時去執行生成。2、違背了編程的方式。3、爲什麼 Java 的 swagger 那麼火,是因爲和 spring-boot 完美整合,那麼 Spring 解決的其實就是 ioc 的控制,所以 go 的 web 也不需要程序去控制,路由,輸入,輸出,所以我們需要這麼做。前期準備--- ⌘ Read more