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