| 8 | #[derive(Debug, Parser)] |
| 9 | #[clap(name = "dev-scripts", about = "Dev scripts for the ALPM project")] |
| 10 | pub struct Cli { |
| 11 | /// Log verbosity level |
| 12 | #[command(flatten)] |
| 13 | pub verbose: clap_verbosity_flag::Verbosity, |
| 14 | |
| 15 | #[clap(subcommand)] |
| 16 | pub cmd: Command, |
| 17 | } |
| 18 | |
| 19 | #[derive(Debug, Parser)] |
| 20 | pub enum Command { |
nothing calls this directly
no outgoing calls
no test coverage detected