//! Query-driven schema catalog loader helpers.
//!
//! This module owns service-layer loading for schema endpoints that depend on
//! normalized query input (`/schema/columns` and `/schema/constraints`).
mod columns;
mod constraints;
pub(super) use columns::load_schema_column_rows;
pub(super) use constraints::load_schema_constraint_rows;