micro_tower/
service.rs

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