Implement download

This commit is contained in:
Kevin Yue
2024-02-18 22:08:06 +08:00
parent 935993e8da
commit 426989350e
2 changed files with 9 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ pub(crate) fn routes(ctx: Arc<WsServerContext>) -> Router {
.route("/health", get(handlers::health))
.route("/active-gui", post(handlers::active_gui))
.route("/auth-data", post(handlers::auth_data))
.route("/update-gui", post(handlers::update_gui))
.route("/ws", get(handlers::ws_handler))
.with_state(ctx)
}