1 use thiserror::Error; 2 3 #[derive(Error, Debug)] 4 #[error(transparent)] 5 pub struct Error(#[source] anyhow::Error); 6 main()7 fn main() {} 8