refactor(proto): move more h1-specific pieces into h1 module

This commit is contained in:
Sean McArthur
2018-01-25 14:40:09 -08:00
parent 68377ede70
commit c33b9d4e16
8 changed files with 31 additions and 29 deletions

View File

@@ -1,8 +1,12 @@
pub use self::conn::{Conn, KeepAlive, KA};
pub use self::decode::Decoder;
pub use self::encode::{EncodedBuf, Encoder};
mod conn;
mod date;
mod decode;
pub mod dispatch;
mod encode;
pub mod parse;
mod io;
pub mod role;