mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-03-26 22:23:14 +00:00
8 lines
126 B
Rust
8 lines
126 B
Rust
|
|
//! Storage module for persisting chat state.
|
||
|
|
|
||
|
|
mod db;
|
||
|
|
mod migrations;
|
||
|
|
pub(crate) mod types;
|
||
|
|
|
||
|
|
pub(crate) use db::ChatStorage;
|