//! Database storage implementation using SeaORM
//!
//! This module provides database connectivity and operations using SeaORM ORM.
// SeaORM implementation
/// Database entities module
/// Database migration module
/// SeaORM database implementation module
// Re-export the main database interface
pub use SeaOrmDatabase as Database;
pub use ;
/// Returns the default absolute path for the SQLite fallback database.
///
/// Resolution order:
/// 1. `LITELLM_SQLITE_PATH` environment variable (if set and non-empty)
/// 2. `<data_local_dir>/litellm-rs/gateway.db` (platform-specific)
/// 3. `/tmp/litellm-rs/gateway.db` (ultimate fallback)