mockforge_core/consistency/
mod.rs1pub mod adapters;
9pub mod engine;
10pub mod persona_graph_response;
11pub mod state_model_registry;
12pub mod types;
13
14pub use engine::ConsistencyEngine;
15pub use persona_graph_response::{
16 enrich_order_response, enrich_response_via_graph, enrich_user_response,
17 get_user_orders_via_graph,
18};
19pub use state_model_registry::StateModelRegistry;
20pub use types::{
21 EntityState, PersonaProfile, ProtocolState, SessionInfo, StateChangeEvent, UnifiedState,
22};