ok so I merged this to match main but I can't remember when we switch rpmfusion repos to enabled by
ok so I merged this to match main but I can't remember when we switch rpmfusion repos to enabled by default?


use clap::Parser;
#[derive(Parser, Debug)]
#[command(author, version, about)]
struct Cli {
#[arg(long)]
config: bool
}
fn main() {
let args = Cli::parse();
if args.config == true {
todo!("Need to implement CLI/TUI setup.");
}
println!("{:?}", args);
}