add allow header

This commit is contained in:
Rohan Prinja
2014-12-10 05:36:25 +05:30
parent e4bf1155de
commit 4bae6b7e0e
3 changed files with 68 additions and 12 deletions

View File

@@ -7,6 +7,7 @@
//! is used, such as `ContentType(pub Mime)`.
pub use self::accept::Accept;
pub use self::allow::Allow;
pub use self::authorization::Authorization;
pub use self::cache_control::CacheControl;
pub use self::cookie::Cookies;
@@ -74,6 +75,9 @@ macro_rules! deref(
/// Exposes the Accept header.
pub mod accept;
/// Exposes the Allow header.
pub mod allow;
/// Exposes the Authorization header.
pub mod authorization;