Rust implementation of operational-endpoints-spec making it easy to add the standard endpoints to your application.
``` rust use ops::{StatusBuilder, server};
async fn main() { let status = StatusBuilder::always("my app", "a description");
let server = server("0.0.0.0:3000".parse().unwrap(), status);
server.await.unwrap();
} ```
See the examples folder for runnable examples.
shell
cargo doc --all --no-deps
open target/doc/ops/index.html
Licensed under either of:
at your option.