1//! RDAP HTTP client core: fetcher, normalizer, and retry logic. 2 3#![forbid(unsafe_code)] 4 5pub mod fetcher; 6pub mod normalizer; 7 8pub use fetcher::{Fetcher, FetcherConfig}; 9pub use normalizer::Normalizer;