Merge pull request #180 from wenderen/etag-header

add etag header
This commit is contained in:
Sean McArthur
2014-12-07 23:48:10 -08:00
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;
@@ -94,6 +95,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;