use thiserror::Error; #[derive(Debug, Error)] pub enum CliError { #[error("IO error: {0}")] Io(#[from] std::io::Error), #[error("JSON error: {0}")] Json(#[from] serde_json::Error), #[error("Cache parse error: {0}")] CacheParse(String), }