athena_rs 3.23.0

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Gateway routing expected logging-schema table contracts.
//!
//! This module preserves a stable gateway routing expectations import surface
//! while contracts are split by registry concern:
//! - `api_registry` for API registry contracts
//! - `public_routes` for public gateway-route registry contracts
//! - `service_routes` for tenant service-route registry contracts

mod api_registry;
mod public_routes;
mod service_routes;

pub(super) use api_registry::EXPECTED_API_REGISTRY;
pub(super) use public_routes::EXPECTED_PUBLIC_GATEWAY_ROUTES;
pub(super) use service_routes::EXPECTED_PUBLIC_SERVICE_ROUTES;