mod dto; mod handlers; pub mod service; use axum::Router; use crate::state::AppState; pub fn router() -> Router { handlers::router() }