MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / Cli

Class Cli

atomic-cli/src/main.rs:164–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

162#[command(propagate_version = true)]
163#[command(arg_required_else_help = true)]
164struct 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///

Calls

no outgoing calls