use thiserror::Error;
pub mod client;
pub mod resources;
#[derive(Debug, Error)]
pub enum RipestatClientError {
#[error(transparent)]
SerdeJson(#[from] serde_json::Error),
#[error(transparent)]
Client(#[from] reqwest::Error),
#[error(transparent)]
UrlParsing(#[from] url::ParseError),
}