[thin_restore (rust)] Prepare for thin_repair

- Finalize the metadata in the Restorer
- Make the Restorer public
This commit is contained in:
Ming-Hung Tsai
2021-07-16 17:46:05 +08:00
parent d42bde371f
commit dccd844714
2 changed files with 62 additions and 58 deletions

View File

@@ -22,6 +22,12 @@ fn main() {
.long("async-io")
.hidden(true),
)
.arg(
Arg::with_name("QUIET")
.help("Suppress output messages, return only exit code.")
.short("q")
.long("quiet"),
)
// options
.arg(
Arg::with_name("INPUT")
@@ -33,7 +39,7 @@ fn main() {
)
.arg(
Arg::with_name("OUTPUT")
.help("Specify the output device to check")
.help("Specify the output device")
.short("o")
.long("output")
.value_name("OUTPUT")