matrixcode-core 0.4.22

MatrixCode Agent Core - Pure logic, no UI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Session management module
//!
//! Provides session persistence, storage, and file locking.

mod manager;
mod metadata;
#[allow(clippy::module_inception)]
mod session;

pub use manager::SessionManager;
pub use metadata::{MessageSummary, SessionIndex, SessionMetadata};
pub use session::{Session, SessionFileLock};