Skip to content

Commit a717afa

Browse files
Pass cargo fmt --all --check
1 parent 6351df3 commit a717afa

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/cli.rs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -872,18 +872,20 @@ fn definitions_subcommands() -> [Command; 2] {
872872
.long("file")
873873
.help("output path")
874874
.required(false)
875-
.default_value("-")
875+
.default_value("-"),
876876
);
877877

878878
let import_cmd = Command::new("import")
879879
.about("import all definitions (queues, exchanges, bindings, users, etc) from a JSON file")
880880
.after_long_help(color_print::cstr!(
881881
"<bold>Doc guide</bold>: https://rabbitmq.com/docs/definitions/"
882-
)).arg(
883-
Arg::new("file")
884-
.long("file")
885-
.help("JSON file with definitions")
886-
.required(true));
882+
))
883+
.arg(
884+
Arg::new("file")
885+
.long("file")
886+
.help("JSON file with definitions")
887+
.required(true),
888+
);
887889

888890
[export_cmd, import_cmd]
889891
}

0 commit comments

Comments
 (0)