athena_rs 3.26.4

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Client-list schema route registration.
//!
//! This module keeps route registration separate from handler execution so
//! route-group composition stays thin in `routes`.

use actix_web::web;

use super::client_route_handlers::{list_clients_protected, schema_clients};

/// Registers schema client-list endpoints.
pub(super) fn services(cfg: &mut web::ServiceConfig) {
    cfg.service(schema_clients).service(list_clients_protected);
}