1 2 3 4 5 6 7 8 9 10
pub mod auth; mod auth_logging; pub mod routes; pub mod runtime; use actix_web::web; pub fn services(cfg: &mut web::ServiceConfig) { routes::services(cfg); }