feat(headers): Implement Content-Language header field

Closes #475
This commit is contained in:
Pyfisch
2015-04-27 21:11:21 +02:00
parent f7f0361626
commit 308880b455
6 changed files with 74 additions and 38 deletions

View File

@@ -2,10 +2,12 @@ pub use self::charset::Charset;
pub use self::encoding::Encoding;
pub use self::entity::EntityTag;
pub use self::httpdate::HttpDate;
pub use self::language::Language;
pub use self::quality_item::{Quality, QualityItem, qitem, q};
mod charset;
mod encoding;
mod entity;
mod httpdate;
mod language;
mod quality_item;