use axum::Router; use crate::AppState; mod debug; pub fn get_routes() -> Router { Router::new().nest("/debug", debug::get_routes()) }