tower/tower-make/src/lib.rs

22 lines
471 B
Rust

#![doc(html_root_url = "https://docs.rs/tower-make/0.3.0")]
#![warn(
missing_debug_implementations,
missing_docs,
rust_2018_idioms,
unreachable_pub
)]
//! Trait aliases for Services that produce specific types of Responses.
#[cfg(feature = "connect")]
mod make_connection;
mod make_service;
#[cfg(feature = "connect")]
pub use crate::make_connection::MakeConnection;
pub use crate::make_service::MakeService;
mod sealed {
pub trait Sealed<T> {}
}