use axum::Router; use sqlx::{Any, Pool}; pub fn identity_router(pool: Pool) -> Router> { Router::new().with_state(pool) }