blob: d5429b2b2637732dc720154f4e250a97049f59dc [file] [log] [blame]
use thiserror::Error;
#[derive(Error, Debug)]
#[error(transparent)]
pub struct Error(#[error(transparent)] std::io::Error);
fn main() {}