7 lines
135 B
Rust
7 lines
135 B
Rust
use axum::Router;
|
|
|
|
use crate::app_state::App;
|
|
|
|
pub(super) fn new_router() -> Router<App> {
|
|
Router::<App>::new().route_with_tsr()
|
|
}
|