mockforge_core/reality_continuum/mod.rs
1//! Reality Continuum - Dynamic blending of mock and real data sources
2//!
3//! This module provides functionality to gradually transition from mock to real backend
4//! data by intelligently blending responses from both sources. This enables teams to
5//! develop and test against a real backend that's still under construction.
6
7pub mod blender;
8pub mod config;
9pub mod engine;
10pub mod merge_strategy;
11pub mod schedule;
12
13pub use blender::ResponseBlender;
14pub use config::{ContinuumConfig, ContinuumRule, MergeStrategy, TransitionMode};
15pub use engine::RealityContinuumEngine;
16pub use schedule::{TimeSchedule, TransitionCurve};