pub(crate) const SKIP_CERT_VERIFICATION: bool =
cfg!(any(feature = "tokio-native-tls", feature = "smol-native-tls"));
pub(crate) type TestResult<T> = std::result::Result<T, Box<dyn std::error::Error>>;
mod cache;
mod cert;
mod client;
mod cookie;
mod form;
mod integrated;
mod request;
mod response;
mod url;
mod helpers;