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