1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#![doc(html_root_url = "https://docs.rs/tower-make/0.1.0-alpha.2")]
#![deny(rust_2018_idioms)]

//! Trait aliases for Services that produce specific types of Responses.

#[cfg(feature = "io")]
mod make_connection;
mod make_service;

#[cfg(feature = "io")]
pub use crate::make_connection::MakeConnection;
pub use crate::make_service::MakeService;

mod sealed {
    pub trait Sealed<T> {}
}