hadris-udf-cli 2.0.0-rc.2

CLI utility for Universal Disk Format image operations
1
2
3
4
5
6
7
8
9
#[path = "../app.rs"]
mod app;

fn main() {
    if let Err(error) = app::run() {
        eprintln!("Error: {error}");
        std::process::exit(1);
    }
}