1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-25 00:12:59 +01:00
actix-extras/src/h1/mod.rs
2018-10-05 07:02:09 -07:00

11 lines
239 B
Rust

//! HTTP/1 implementation
mod codec;
mod decoder;
mod dispatcher;
mod response;
mod service;
pub use self::codec::{Codec, InMessage, OutMessage};
pub use self::dispatcher::Dispatcher;
pub use self::service::{H1Service, H1ServiceHandler};