elif-orm 0.7.1

Production-ready ORM with migrations, database services, connection pooling, and query builder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Connection Management
//!
//! This module provides connection pool management, health monitoring,
//! and connection lifecycle management.

pub mod health;
pub mod pool;
pub mod statistics;

// Re-export for convenience
pub use health::*;
pub use pool::*;
pub use statistics::*;