mod create; use axum::{routing::post, Router}; use create::account_creation_post_handler; use super::AppState; pub fn requests(state: AppState) -> Router { Router::new().nest( "/account", Router::new() .route("/", post(account_creation_post_handler)) .with_state(state), ) }