//! `HttpProbe` — executes a single HTTP request and captures the full response surface.
//!
//! Two implementations exist behind `#[cfg]` gates:
//! - **Native** (`not(wasm32)`): uses `reqwest` with `std::time::Instant` for nanosecond timing.
//! - **WASM** (`wasm32`): uses the Cloudflare Workers Rust SDK (`worker::Fetch`) with
//! `Date.now()` millisecond timing, suitable for Cloudflare Workers environments.
pub use HttpProbe;
pub use HttpProbe;