Skip to content

Commit 290adb2

Browse files
committed
change arg order
1 parent 7271b9f commit 290adb2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

sshdconfig/src/args.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ pub struct Args {
1313

1414
#[derive(Subcommand)]
1515
pub enum Command {
16-
/// Export `sshd_config`
17-
Export,
1816
/// Get default shell, eventually to be used for `sshd_config` and repeatable keywords
1917
Get,
20-
Schema {
21-
// Used to inform which schema to generate
22-
#[clap(long, hide = true)]
23-
as_global: bool,
24-
},
2518
/// Set default shell, eventually to be used for `sshd_config` and repeatable keywords
2619
Set {
2720
#[clap(short = 'i', long, help = "input to set in sshd_config")]
2821
input: String
2922
},
23+
/// Export `sshd_config`
24+
Export,
25+
Schema {
26+
// Used to inform which schema to generate
27+
#[clap(long, hide = true)]
28+
as_global: bool,
29+
},
3030
}
3131

3232
#[derive(Clone, Debug, Deserialize, Eq, JsonSchema, PartialEq, Serialize)]

0 commit comments

Comments
 (0)