//! Http utils
//!
//! This crate contains utilities to work with the HTTP protocol
//!
//! # Example
//! ```rust,no_run
//! use http::prelude::*;
//! use std::net::TcpStream;
//!
//! let req = HttpRequest::builder()
//! .method(HttpMethod::GET)
//! .url("/")
//! .build().unwrap();
//! let tcp = TcpStream::connect("127.0.0.1:80").unwrap();
//! req.send_to(HttpStream::from(tcp)).unwrap();
//! ```
pub use *;
pub type Result<T> = Result;