1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-03-01 00:51:05 +00:00
actix-web/src/h1/mod.rs
2018-10-05 10:03:10 -07:00

10 lines
238 B
Rust

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