athena_rs 3.26.3

Hyper performant polyglot Database driver
1
2
3
4
5
6
7
8
9
10
//! Query-driven schema catalog HTTP handlers.
//!
//! This module owns endpoints that require query-parameter normalization before
//! response orchestration (`/schema/columns` and `/schema/constraints`).

mod columns;
mod constraints;

pub(super) use columns::schema_columns;
pub(super) use constraints::schema_constraints;