This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
veil/src/routes/mod.rs
2025-03-28 14:36:43 +00:00

14 lines
239 B
Rust

mod auth;
mod health;
use axum::Router;
use crate::state::State;
pub fn routes(state: State) -> Router {
let auth = auth::routes(state.clone());
let health = health::routes(state);
Router::new().merge(auth).merge(health)
}