1 2 3 4 5 6 7 8 9 10
//! Reexport [`tower`] utilities. pub mod pool; pub use tower::*; #[derive(Debug, thiserror::Error)] #[error("service `{0}` not ready")] pub struct NotReady(pub &'static str);