1 2 3 4 5 6 7
//! HTTP client layer — `LightconeHttp` with per-endpoint retry policies. pub mod client; pub mod retry; pub use client::LightconeHttp; pub use retry::{RetryConfig, RetryPolicy};