//! Schema route registration catalog.
//!
//! This module is intentionally thin: it composes route groups owned by
//! dedicated route modules (`client_routes`, `catalog_routes`, `debug_route`).
use actix_web::web;
use super::{catalog_routes, client_routes, debug_route};
/// Registers schema endpoints with the Actix router.
pub(super) fn services(cfg: &mut web::ServiceConfig) {
client_routes::services(cfg);
catalog_routes::services(cfg);
debug_route::services(cfg);
}