use axum::routing::post; use axum::Router; mod deploy; pub fn router() -> Router { Router::new().route("/deploy", post(deploy::post_deploy)) }