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