elif_orm/connection/
mod.rs

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