//! Wrapper around the `fetch` API.
//!
//! # Example
//!
//! ```
//! # use gloo_net::http::Request;
//! # async fn no_run() {
//! let resp = Request::get("/path")
//! .send()
//! .await
//! .unwrap();
//! assert_eq!(resp.status(), 200);
//! # }
//! ```
pub use Headers;
pub use Method;
pub use QueryParams;
pub use ;
pub use ;