athena_rs 3.26.2

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 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;