use sqlx::PgPool; use std::sync::Arc; use axum::extract::State; use crate::auth::Authenticator; pub struct ServerContext { pub app_url: String, pub authenticator: Box, pub db: PgPool, } pub type ServerState = State>;