//! HTTP client module for rurl.
//!
//! This module provides the core HTTP functionality including:
//! - [`HttpClient`] - Executes HTTP requests
//! - [`HttpRequest`] - Request builder with method, headers, body
//! - [`HttpResponse`] - Response with status, headers, body, timing
pub use HttpClient;
pub use HttpRequest;
pub use HttpResponse;