1 2 3 4 5 6 7 8
pub mod info; use axum::Router; use axum::routing::get; pub fn routes() -> Router { Router::new().route("/", get(info::handler)) }