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