mockforge-core 0.3.115

Shared logic for MockForge - routing, validation, latency, proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Scenario-First SDKs
//!
//! This module provides high-level scenario execution APIs that chain multiple
//! endpoint calls together, enabling developers to work with business-level
//! scenarios (e.g., "CheckoutSuccess") instead of individual API calls.

pub mod executor;
pub mod registry;
pub mod types;

pub use executor::ScenarioExecutor;
pub use registry::ScenarioRegistry;
pub use types::{ScenarioDefinition, ScenarioParameter, ScenarioResult, ScenarioStep, StepResult};