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

Class Cli

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

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls