core/
lib.rs

1pub type Result<T> = anyhow::Result<T>;
2
3pub trait Service {
4    fn name(&self) -> &str;
5    fn health_check(&self) -> bool {
6        true
7    }
8}