1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#![doc(html_root_url = "https://docs.rs/tower-http-service/0.1.0")]
#![deny(missing_docs, missing_debug_implementations, unreachable_pub)]
#![cfg_attr(test, deny(warnings))]

//! Specialization of `tower::Service` for working with HTTP services.

pub mod body;
pub mod connection;
pub mod service;

mod sealed;