| 10 | #[derive(Clone, Debug, Parser)] |
| 11 | #[command(about, author, name = "alpm-srcinfo", version)] |
| 12 | pub struct Cli { |
| 13 | /// The `alpm-srcinfo` commands. |
| 14 | #[command(subcommand)] |
| 15 | pub command: Command, |
| 16 | } |
| 17 | |
| 18 | /// Output format for the `format-packages` command. |
| 19 | #[derive(Clone, Debug, Default, strum::Display, clap::ValueEnum)] |
nothing calls this directly
no outgoing calls
no test coverage detected