blob: 803135f862cecdc673130ae22b327bd03d39665a (
plain)
1
2
3
4
5
6
7
8
9
10
|
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<Router<()>> {
todo!()
}
|