blob: 77e7811df922521519d2ee669dfca57f438a87d1 [file] [log] [blame] [edit]
use eyre::{eyre, Report, WrapErr};
fn main() -> Result<(), Report> {
let e: Report = eyre!("oh no this program is just bad!");
Err(e).wrap_err("usage example successfully experienced a failure")
}