feat(headers): add CacheControl header

This commit is contained in:
Sean McArthur
2014-12-01 19:58:07 -08:00
parent 0297147dd1
commit f182f53210
4 changed files with 179 additions and 5 deletions

View File

@@ -8,6 +8,7 @@
pub use self::accept::Accept;
pub use self::authorization::Authorization;
pub use self::cache_control::CacheControl;
pub use self::cookie::Cookies;
pub use self::connection::Connection;
pub use self::content_length::ContentLength;
@@ -83,6 +84,9 @@ pub mod accept;
/// Exposes the Authorization header.
pub mod authorization;
/// Exposes the CacheControl header.
pub mod cache_control;
/// Exposes the Cookie header.
pub mod cookie;