athena_rs 3.26.3

Hyper performant polyglot Database driver
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Schema response-shaping helpers.
//!
//! This module maps raw schema-service records into stable HTTP response DTO
//! shapes used by schema routes while delegating specialized grouping/nesting
//! behavior to focused helper modules.

mod columns;
mod constraints;
mod overview;
mod tables;

pub(super) use columns::schema_columns;
pub(super) use constraints::schema_constraints;
pub(super) use overview::schema_overview;
pub(super) use tables::schema_tables;