2026-02-05 14:44:22 +08:00

15 lines
437 B
Rust

//! Storage module for persisting chat state.
//!
//! This module provides storage implementations for the chat manager state,
//! built on top of the shared `storage` crate.
//!
//! Note: This module is internal. Users should use `ChatManager` which
//! handles all storage operations automatically.
mod db;
pub(crate) mod types;
pub(crate) use db::ChatStorage;
pub(crate) use storage::StorageError;
pub(crate) use types::ChatRecord;