pub mod backoff;
pub mod checker;
pub mod checkpoint;
pub mod csv;
pub mod dedup;
pub mod error;
pub mod normalize;
pub mod proxy;
pub mod status;
pub mod types;
pub use backoff::BackoffStrategy;
pub use checker::{check_bulk, check_bulk_with_progress, check_stream, check_stream_named};
pub use checkpoint::CheckpointWriter;
pub use csv::sanitize_csv_field;
pub use dedup::UrlDeduplicator;
pub use error::{CheckerError, summarize_error, summarize_error_str};
pub use normalize::{normalize_url_for_hash, url_resume_hash};
pub use proxy::parse_proxy_list;
pub use status::{categorize_status, meets_data_threshold};
pub use types::{BulkCheckReport, CheckOptions, CheckResult, StreamCategory, StreamInfo};