Skip to main content

mkt_core/http/
mod.rs

1//! Shared HTTP client and rate limiting utilities.
2//!
3//! Provides a configured `reqwest::Client` builder and a token-bucket
4//! rate limiter used by all provider crates.
5
6mod client;
7mod rate_limit;
8
9pub use client::*;
10pub use rate_limit::*;