Skip to main content

xitca_http/h1/
mod.rs

1//! http/1 specific module for types and protocol utilities.
2
3pub mod proto;
4
5mod body;
6mod builder;
7mod dispatcher;
8mod error;
9mod io;
10mod service;
11
12pub use self::body::RequestBody;
13pub use self::dispatcher::Dispatcher;
14pub use self::error::Error;
15pub use self::service::H1Service;