| 162 | #[command(propagate_version = true)] |
| 163 | #[command(arg_required_else_help = true)] |
| 164 | struct Cli { |
| 165 | /// Emit extra diagnostic output. |
| 166 | #[arg(short, long, global = true)] |
| 167 | verbose: bool, |
| 168 | |
| 169 | /// Disable ANSI color in output. |
| 170 | #[arg(long, global = true)] |
| 171 | no_color: bool, |
| 172 | |
| 173 | /// The command to run. |
| 174 | #[command(subcommand)] |
| 175 | command: Commands, |
| 176 | } |
| 177 | |
| 178 | /// Available commands for the Atomic CLI. |
| 179 | /// |
no outgoing calls