Remove unimplemented "snapshot" subcommand from --help

This commit is contained in:
Heikki Linnakangas
2021-04-16 11:11:13 +03:00
parent 583f64768f
commit fa5d31056b
2 changed files with 1 additions and 9 deletions

View File

@@ -30,14 +30,6 @@ fn main() {
.subcommand(SubCommand::with_name("stop").arg(name_arg.clone()))
.subcommand(SubCommand::with_name("destroy").arg(name_arg.clone())),
)
.subcommand(
SubCommand::with_name("snapshot")
.about("Manage database snapshots")
.subcommand(SubCommand::with_name("create"))
.subcommand(SubCommand::with_name("start"))
.subcommand(SubCommand::with_name("stop"))
.subcommand(SubCommand::with_name("destroy")),
)
.get_matches();
// handle init separately and exit