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