1use error_rules::*; 2 3#[derive(Debug, Error)] 4pub enum Error { 5 #[error_from] 6 Json(serde_json::Error), 7 #[error_from] 8 Io(std::io::Error), 9}