//! Re-exports the shared HTTP plumbing ([`pomelo_http`]) under this crate's
//! `http` path, so vendor modules keep `use super::http::{Fetcher, HttpClient}`.
//! The [`Fetcher`] alias fixes the [`RetrySettings`](pomelo_http::RetrySettings)
//! type to this crate's [`SyncConfig`](crate::config::SyncConfig); its
//! [`get_rows`](pomelo_http::Fetcher::get_rows) covers FMP's list-endpoint error
//! envelopes.
pub use ;
/// The real ureq-backed client — only with the `fmp-sync` feature.
pub use UreqClient;
/// [`pomelo_http::Fetcher`] specialized to this crate's `SyncConfig`.
pub type Fetcher<'a, H> = Fetcher;