mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-02-10 17:03:12 +00:00
15 lines
437 B
Rust
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;
|