micro-tower 0.1.0

micro-tower is a framework to generate and manage micro services.
Documentation
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);