blob: 7c439d941f1d4fa5fa749504d3e484f7a69da65b [file] [log] [blame]
use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
What {
#[error("...")]
io: std::io::Error,
},
}
fn main() {}