//! `/debug/schema` route registration.
//!
//! This module keeps registration separate from handler execution so route
//! composition stays thin in `routes`.
use actix_web::web;
use super::debug_route_handler::debug_schema;
/// Registers `/debug/schema` diagnostics routes.
pub(super) fn services(cfg: &mut web::ServiceConfig) {
cfg.service(debug_schema);
}