feat(headers): add LastModified header

This commit is contained in:
Sean McArthur
2014-11-30 15:59:40 -08:00
parent e255f88dd2
commit 0297147dd1
2 changed files with 47 additions and 0 deletions

View File

@@ -13,7 +13,9 @@ pub use self::connection::Connection;
pub use self::content_length::ContentLength;
pub use self::content_type::ContentType;
pub use self::date::Date;
pub use self::expires::Expires;
pub use self::host::Host;
pub use self::last_modified::LastModified;
pub use self::location::Location;
pub use self::transfer_encoding::TransferEncoding;
pub use self::upgrade::Upgrade;
@@ -102,6 +104,9 @@ pub mod expires;
/// Exposes the Host header.
pub mod host;
/// Exposes the LastModified header.
pub mod last_modified;
/// Exposes the Location header.
pub mod location;