add etag header

This commit is contained in:
Rohan Prinja
2014-12-06 03:52:13 +05:30
parent ae88092587
commit c4efa80fb5
2 changed files with 160 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ 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::etag::Etag;
pub use self::expires::Expires;
pub use self::host::Host;
pub use self::last_modified::LastModified;
@@ -93,6 +94,9 @@ pub mod content_type;
/// Exposes the Date header.
pub mod date;
/// Exposes the Etag header.
pub mod etag;
/// Exposes the Expires header.
pub mod expires;