//! Persistence and domain model layer: sessions, conversations, memory, //! message log (`SQLite`), edit log, and app/settings config. pub mod app_config; pub mod editlog; pub mod memory; pub mod msglog; pub mod session; pub mod session_lock; pub mod settings; pub mod store;