//! Re-exported hyper HTTP library types.
//!
//! ## Hyper
//!
//! All types that are re-exported from Hyper resides inside of this module.
//! These types will, with certainty, be removed with time, but they reside here
//! while necessary.
pub use Request as Request;
pub use Response as Response;
pub use Server as Server;
pub use Handler as Handler;
pub use header;
pub use mime;
pub use net;
pub use Method;
pub use StatusCode;
pub use RequestUri;
pub use h1;
pub use buffer;
/// Type alias to `hyper::Response<'a, hyper::net::Fresh>`.
pub type FreshResponse<'a> = Response;