Review-mcp verification complete: all 12 checklist items pass (from_mcp/to_mcp conformance, ADR-037/041/014/023/034, feature gate isolation, GatewayDispatch concrete struct, test coverage 223+5). Applied cargo fmt across crate.
11 lines
392 B
Rust
11 lines
392 B
Rust
//! Shared HTTP client (`ClientWithMiddleware`): reqwest + retry middleware
|
|
//! stack, used by `from_openapi`/`from_mcp` forwarding handlers.
|
|
//!
|
|
//! See `docs/architecture/crates/http/http-adapters.md` and OQ-40.
|
|
|
|
mod http_client;
|
|
mod retry_after;
|
|
|
|
pub use http_client::{ClientCertConfig, HttpClientBuildError, HttpClientConfig, SharedHttpClient};
|
|
pub use retry_after::RetryAfterMiddleware;
|