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