Add clap subcommand for dumping

This commit is contained in:
Matthias Beyer 2017-06-18 18:56:49 +02:00
parent 2b7706424a
commit 35fd0f2b9c

View file

@ -205,4 +205,9 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> {
.about("Verify the store")
.version("0.1")
)
.subcommand(SubCommand::with_name("dump")
.about("Dump the complete store to stdout. Currently does only support JSON")
.version("0.1")
)
}