brewlog/src/application/mod.rs
2025-11-25 21:40:39 +00:00

7 lines
130 B
Rust

pub mod auth;
pub mod errors;
pub mod routes;
pub mod server;
pub use routes::app_router;
pub use server::{ServerConfig, serve};