1 2 3 4 5 6 7 8 9 10 11
pub(crate) const SKIP_CERT_VERIFICATION: bool = cfg!(feature = "native-tls"); pub(crate) type TestResult<T> = std::result::Result<T, Box<dyn std::error::Error>>; mod cert; mod client; mod form; mod helpers; mod integrated; mod request; mod response;