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