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

Class Cli

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

Source from the content-addressed store, hash-verified

112#[command(propagate_version = true)]
113#[command(arg_required_else_help = true)]
114struct Cli {
115 /// Enable verbose output for debugging.
116 ///
117 /// When enabled, shows additional information about what Atomic is doing.
118 /// Useful for troubleshooting or understanding the internal operations.
119 #[arg(short, long, global = true)]
120 verbose: bool,
121
122 /// Disable colored output.
123 ///
124 /// By default, Atomic uses colors when outputting to a terminal.
125 /// Use this flag to disable colors (useful for piping output).
126 #[arg(long, global = true)]
127 no_color: bool,
128
129 /// The command to run.
130 #[command(subcommand)]
131 command: Commands,
132}
133
134/// Available commands for the Atomic CLI.
135///

Callers 4

build_provenanceMethod · 0.85
build_turn_provenanceFunction · 0.85
cliMethod · 0.85

Calls

no outgoing calls

Tested by 1