//! 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;