//! Storage layer for RLM-RS.
//!
//! Provides persistent storage for RLM state using `SQLite`. The storage
//! layer handles contexts, buffers, chunks, and metadata with proper
//! transaction support.
pub use ;
pub use ;
pub use Storage;
/// Default database file name.
pub const DEFAULT_DB_NAME: &str = "rlm-state.db";
/// Default database path relative to project root.
pub const DEFAULT_DB_PATH: &str = ".rlm/rlm-state.db";