1//! Connection Management
2//!
3//! This module provides connection pool management, health monitoring,
4//! and connection lifecycle management.
56pub mod health;
7pub mod pool;
8pub mod statistics;
910// Re-export for convenience
11pub use health::*;
12pub use pool::*;
13pub use statistics::*;