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

Class Cli

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

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls