http-envinfo 0.1.0

This package provides JSON API of health for microservice. It's using rocket framework.
1
2
3
4
5
6
mod health_endpoints;
mod health_struct;
pub use health_endpoints::alive_endpoint as alive;
pub use health_endpoints::health_endpoint as health;
pub use health_endpoints::ready_endpoint as ready;
pub use health_endpoints::started_endpoint as started;