mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-28 01:52:57 +01:00
12 lines
292 B
Rust
12 lines
292 B
Rust
// #![deny(rust_2018_idioms, warnings)]
|
|
#![allow(clippy::type_complexity, clippy::too_many_arguments)]
|
|
|
|
mod connect;
|
|
mod dispatcher;
|
|
mod error;
|
|
mod service;
|
|
|
|
pub use self::connect::{Connect, ConnectResult};
|
|
pub use self::error::ServiceError;
|
|
pub use self::service::{Builder, FactoryBuilder};
|