feat(body): rename Entity to Payload

Closes #1464
This commit is contained in:
Sean McArthur
2018-04-10 15:55:13 -07:00
parent 313f82d971
commit dfdca25c00
18 changed files with 105 additions and 160 deletions

View File

@@ -46,12 +46,15 @@ pub use http::{
pub use client::Client;
pub use error::{Result, Error};
pub use proto::{body, Body, Chunk};
pub use body::{Body};
pub use chunk::Chunk;
pub use server::Server;
mod common;
#[cfg(test)]
mod mock;
pub mod body;
mod chunk;
pub mod client;
pub mod error;
mod headers;