use anyhow; use thiserror; #[derive(thiserror::Error, Debug)] pub enum Error { #[error(transparent)] Other(#[from] anyhow::Error), } pub type Result = core::result::Result;