athena_rs 3.26.3

Hyper performant polyglot Database driver
1
2
3
4
5
6
7
8
9
10
11
12
//! Schema route client/pool resolver context helpers.
//!
//! This module centralizes schema client/pool resolution behind a stable import
//! surface while concrete resolution concerns are split by context:
//! - `request_client` for request-scoped authenticated schema client resolution
//! - `logging_client` for configured logging client resolution

mod logging_client;
mod request_client;

pub(super) use logging_client::logging_client_and_pool;
pub(super) use request_client::require_schema_client_pool;