//! Database connection pooling and management.
//!
//! Provides abstractions for database connections with support for
//! SeaORM (default) and SQLx backends.
pub use DatabaseConfig;
pub use DatabaseConnection;
pub use SeaOrmPool;
pub use sea_orm;