use axum::Router; use crate::{config::Config, server::state::AppState}; pub mod shutdown; pub mod state; pub async fn router(config: &Config, state: AppState) -> anyhow::Result> { todo!() }