mockforge_http/consistency/mod.rs
1//! Consistency engine integration for HTTP protocol
2//!
3//! This module provides HTTP-specific integration with the cross-protocol
4//! consistency engine, ensuring HTTP responses reflect unified state.
5
6pub mod http_adapter;
7pub mod middleware;
8pub mod response_enrichment;
9
10pub use http_adapter::HttpAdapter;
11pub use middleware::ConsistencyMiddlewareState;