1#[derive(Debug, thiserror::Error)] 2pub enum Error { 3 #[error("HTTP error: {0}")] 4 HttpError(#[from] reqwest::Error), 5 #[error("Internal error: {0}")] 6 InternalError(String), 7}