summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 3ae6b3e6cdbbea3a3ba2debba780ef1688ee2cad (plain)
1
2
3
4
5
6
7
8
9
use alt_controller_image::cli::{Cli, run};
use clap::Parser;

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