athena_rs 3.26.3

Hyper performant polyglot Database driver
1
2
3
4
5
6
7
8
9
10
11
12
//! Network-domain expected logging-schema table contracts.
//!
//! This module preserves a stable network-domain expectation import surface
//! while contracts are split by concern:
//! - `ip_catalog` for the normalized IP catalog table contract
//! - `ip_statistics` for per-IP request statistics contracts

mod ip_catalog;
mod ip_statistics;

pub(super) use ip_catalog::EXPECTED_IP_ADDRESSES;
pub(super) use ip_statistics::EXPECTED_IP_ADDRESSES_STATISTICS;