//! Schema catalog HTTP handlers.
//!
//! This module owns non-query schema catalog endpoints (`/schema`,
//! `/schema/tables`, `/schema/migrations`). Query-driven endpoints live in
//! `catalog_route_handlers_query`.
mod migrations;
mod overview;
mod tables;
pub(super) use migrations::schema_migrations;
pub(super) use overview::schema_overview;
pub(super) use tables::schema_tables;