//! HTTP as a port (ADR-0014).
//!
//! Connectors and SDK crates depend on [`HttpClient`], never on a concrete HTTP
//! library. That keeps one connection pool and one timeout policy for the whole
//! application, gives rate limits and status mapping a single home, and makes
//! connector tests deterministic and offline.
pub use HttpClient;
pub use Headers;
pub use RateLimit;
pub use ;
pub use HttpResponse;