1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// TODO: this is required if action type is enabled
// once `clap` updates, this can be removed
// see <https://github.com/kbknapp/clap-rs/pull/1242>
// #![allow(deprecated)]
use PathBuf;
/// CLI arguments structure
// /// Action type to perform
// arg_enum! {
// #[derive(Serialize, StructOpt, PartialEq, Debug)]
// pub enum Type {
// Gz,
// }
// }