use actix_web::web; use actix_web::web::scope; use crate::api::auth; pub fn init_routes(cfg: &mut web::ServiceConfig) { cfg.service(scope("/api/v1").configure(auth::configure)); }