athena_rs 3.22.1

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