mockforge-core 0.3.116

Shared logic for MockForge - routing, validation, latency, proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Scenario Studio
//!
//! This module provides the core functionality for the Scenario Studio visual editor,
//! enabling collaborative editing of business flows (happy path, SLA violation, regression).

pub mod flow;
pub mod types;

pub use flow::{FlowExecutionResult, FlowExecutor, FlowStepResult};
pub use types::{
    ConditionOperator, FlowCondition, FlowConnection, FlowDefinition, FlowPosition, FlowStep,
    FlowType, FlowVariant, StepType,
};