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