Add a module-level docstring to 'http'.

This commit is contained in:
Sergio Benitez 2018-08-15 19:55:34 -07:00
parent b642e94a2c
commit 01a5011b61
1 changed files with 5 additions and 0 deletions

View File

@ -130,6 +130,11 @@ pub mod error;
// Reexport of HTTP everything.
pub mod http {
//! Types that map to concepts in HTTP.
//!
//! This module exports types that map to HTTP concepts or to the underlying
//! HTTP library when needed.
#[doc(inline)]
pub use rocket_http::*;
}