mod decode;
#[allow(clippy::module_inception)]
mod response;
mod response_async;
pub use self::{response::Response, response_async::ResponseAsync};
pub(crate) fn new_headers() -> http_types::Headers {
http_types::Request::new(http_types::Method::Get, "https://thisisveryannoying.com")
.as_ref()
.clone()
}