athena_rs 3.18.0

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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);
}