mockforge_core/snapshots/mod.rs
1//! Time travel and snapshot functionality
2//!
3//! This module provides functionality to save and restore entire system states
4//! (across protocols, personas, and reality level) with snapshots.
5
6pub mod manager;
7pub mod state_exporter;
8pub mod types;
9
10pub use manager::SnapshotManager;
11pub use state_exporter::{BoxedStateExporter, ProtocolStateExporter};
12pub use types::{SnapshotComponents, SnapshotManifest, SnapshotMetadata};