next_web_dev/router/
private_router.rs

1use axum::Router;
2
3
4#[derive(Default)]
5pub struct PrivateRouter(pub Router);
6
7