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 types;
8
9pub use manager::SnapshotManager;
10pub use types::{SnapshotComponents, SnapshotManifest, SnapshotMetadata};