I'm happy to submit a PR to add to the setup instructions, if desired.
I'm happy to submit a PR to add to the setup instructions, if desired.
dnf info part in there? That way we can keep track of the reasons we're adding packages so in the future we understand why we put something in there.
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);
}