1 2 3 4 5 6 7 8 9
use clap::Parser; #[derive(Parser, Debug)] struct Args { #[arg(short, long)] } fn main() { println!("sysmgmt software"); }