1 2 3 4 5 6 7 8 9 10 11 12
use std::process; use clap::Parser; #[derive(Parser)] #[command(version, about, long_about = None)] struct Config {} fn main() { Config::parse(); process::exit(1); }