//! Schema catalog query-loading helpers.
//!
//! This module owns service-layer loading for non-query schema catalog
//! endpoints (`/schema` and `/schema/tables`), decoupling SQL fetch
//! orchestration from HTTP response shaping.
mod overview;
mod tables;
pub(super) use overview::load_schema_overview_rows;
pub(super) use tables::load_schema_table_rows;