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