2026-03-24 18:14:47 -07:00

8 lines
126 B
Rust

//! Storage module for persisting chat state.
mod db;
mod migrations;
pub(crate) mod types;
pub(crate) use db::ChatStorage;