mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-02-11 09:23:26 +00:00
14 lines
399 B
Rust
14 lines
399 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.
|
||
|
|
|
||
|
|
mod db;
|
||
|
|
mod session;
|
||
|
|
mod types;
|
||
|
|
|
||
|
|
pub use db::ChatStorage;
|
||
|
|
pub use session::{ChatSession, SessionError};
|
||
|
|
pub use storage::{SqliteDb, StorageConfig, StorageError};
|
||
|
|
pub use types::{ChatRecord, IdentityRecord, InboxKeyRecord};
|