10 lines
151 B
Rust
10 lines
151 B
Rust
|
use axum::Router;
|
||
|
|
||
|
use crate::AppState;
|
||
|
|
||
|
mod debug;
|
||
|
|
||
|
pub fn get_routes() -> Router<AppState> {
|
||
|
Router::new().nest("/debug", debug::get_routes())
|
||
|
}
|