()
| 28 | |
| 29 | #[tokio::main] |
| 30 | async fn main() -> Result<(), Error> { |
| 31 | tracing::init_default_subscriber(); |
| 32 | |
| 33 | let app = Router::new() |
| 34 | .route("/testStage/hello/world", post(handler_sample)) |
| 35 | .route_layer(axum::middleware::from_fn(mw_sample)); |
| 36 | |
| 37 | run(app).await |
| 38 | } |
nothing calls this directly
no test coverage detected