File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ pub enum InstallCommands {
4141}
4242
4343//install args
44- #[ derive( Args , Debug , Clone ) ]
44+ #[ derive( Args , Debug ) ]
4545pub struct InstallArgs {
4646 #[ command( subcommand) ]
4747 pub install_cmd : InstallCommands ,
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ struct Cli {
4242 cmd : Option < Commands > ,
4343}
4444
45- #[ derive( Subcommand , Debug , Clone ) ]
45+ #[ derive( Subcommand , Debug ) ]
4646enum Commands {
4747 /* list of available commands */
4848 #[ command( name = "install" , about = "Manage installation" ) ]
@@ -64,7 +64,7 @@ enum Commands {
6464 #[ command( name = "policy" , about = "Network Policies" ) ]
6565 Policies ( PoliciesArgs ) ,
6666}
67- #[ derive( Args , Debug , Clone ) ]
67+ #[ derive( Args ) ]
6868struct SetArgs {
6969 val : String ,
7070}
You can’t perform that action at this time.
0 commit comments