pub mod issue_api_key; use actix_web::web; pub fn configure(cfg: &mut web::ServiceConfig) { cfg.service( web::scope("/internal") .route("/api-keys", web::post().to(issue_api_key::issue_api_key)), ); }