//! Shared HTTP client, authentication, rate limiting, and error handling for
//! GOV.UK / Companies House SDK crates.
//!
//! Product crates should depend only on this crate for HTTP and wire endpoints through
//! [`SdkClient::get`] / [`SdkClient::post`] or [`SdkClient::request`].
pub use ;
/// Re-export for callers that need a non-default HTTP method via [`SdkClient::request`].
pub use Method;
pub use SdkError;
pub use ApiMessage;
pub use ChDeprecation;
pub use NegotiatedResponse;
pub use SdkRequest;
pub use ;
/// Standard result type for SDK operations.
pub type SdkResult<T> = ;