blob: d1855bec5cc4651a808510c1674d6cf16af87b8e [file] [log] [blame]
use thiserror::Error;
#[derive(Debug, Error)]
pub struct Error {
#[source]
source: std::io::Error,
#[from]
other: anyhow::Error,
}
fn main() {}