summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/argv.go b/argv.go
index 8d15a93..90d0e07 100644
--- a/argv.go
+++ b/argv.go
@@ -115,8 +115,10 @@ type DevCmd struct {
}
type GenerateCmd struct {
- Make *EmptyCmd `arg:"subcommand:make" help:"make all the autogenerated files"`
- Clean *EmptyCmd `arg:"subcommand:clean" help:"clean out all the autogenerated files"`
+ Make *EmptyCmd `arg:"subcommand:make" help:"make all the autogenerated files"`
+ Clean *EmptyCmd `arg:"subcommand:clean" help:"clean out all the autogenerated files"`
+ Verbose bool `arg:"--verbose" help:"be verbose about it"`
+ Strict bool `arg:"--strict" help:"die if any namespaces are missing"`
}
type CleanCmd struct {