//! Core database infrastructure
//!
//! This module provides the foundational database components used throughout monocle:
//!
//! ## SQLite
//! - `DatabaseConn`: SQLite connection wrapper with configuration
//! - `SchemaManager`: SQLite schema initialization and management
//! - `SchemaStatus`: SQLite schema state enumeration
// SQLite exports
pub use DatabaseConn;
pub use ;