summaryrefslogtreecommitdiffstats
path: root/src/cli.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index ff25792..0000644 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -21,11 +21,14 @@ pub(crate) struct Cli {
21 21
22#[derive(Debug, Clone, StructOpt)] 22#[derive(Debug, Clone, StructOpt)]
23pub(crate) enum Command { 23pub(crate) enum Command {
24 Generate { file: String }, 24 Generate {
25 file: String,
26 },
27 Inspect,
25 Config { 28 Config {
26 #[structopt(subcommand)] 29 #[structopt(subcommand)]
27 command: ConfigCommand, 30 command: ConfigCommand,
28 } 31 },
29} 32}
30 33
31#[derive(Debug, Clone, StructOpt)] 34#[derive(Debug, Clone, StructOpt)]