dandanapi 0.0.1

Dandanapi http client
Documentation
1
2
3
4
5
6
7
8
9
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("http: {0}")]
    HttpError(reqwest::Error),
    #[error("serde: {0}")]
    SerdeError(serde_json::Error),
    #[error("secret: {0}")]
    SecretGenerationError(String),
}