We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0032b9f commit 28d5893Copy full SHA for 28d5893
2 files changed
cli/src/install.rs
@@ -41,7 +41,7 @@ pub enum InstallCommands {
41
}
42
43
//install args
44
-#[derive(Args, Debug, Clone)]
+#[derive(Args, Debug)]
45
pub struct InstallArgs {
46
#[command(subcommand)]
47
pub install_cmd: InstallCommands,
cli/src/main.rs
@@ -42,7 +42,7 @@ struct Cli {
cmd: Option<Commands>,
-#[derive(Subcommand, Debug, Clone)]
+#[derive(Subcommand, Debug)]
enum Commands {
/* list of available commands */
48
#[command(name = "install", about = "Manage installation")]
@@ -64,7 +64,7 @@ enum Commands {
64
#[command(name = "policy", about = "Network Policies")]
65
Policies(PoliciesArgs),
66
67
+#[derive(Args)]
68
struct SetArgs {
69
val: String,
70
0 commit comments