mise-client 0.1.6

MIcro SErvice
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! mise-client
//!
//! A client optimized to talk to mise-server.
//! Uses [http](https://docs.rs/http) for types.
//!
//! All values are based on json with [serde_json](https://docs.rs/serde_json).
//!
//! Logs with [tracing](https://docs.rs/tracing) and metrics with
//! [metrics](https://docs.rs/metrics).

mod mise;

pub mod prelude {
    pub use crate::mise::{Client, ClientError};
}