//! 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;