Mountain/ApplicationState/Internal/Persistence/mod.rs
1//! # Persistence
2//!
3//! Memento loading and saving for state persistence and crash recovery.
4//! Writes/reads JSON state files to disk with proper error handling.
5
6pub mod MementoLoader;
7
8pub mod MementoSaver;