autorun 0.1.0

A simple tool to manage autorun entries on Windows
1
2
3
4
5
6
7
8
9
10
11
12
mod cli;

use clap::Parser;

fn main() {
    let cli = cli::Cli::parse();

    if let Err(e) = cli::run(cli) {
        eprintln!("error: {}", e);
        std::process::exit(1);
    }
}