summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 14:58:05 -0500
committerJeff Carr <[email protected]>2025-10-17 14:58:05 -0500
commit9b1665a6ee7ec182d55b781eac4adea0c29910d8 (patch)
treebfd8b1838bc60336d260484a1de1fbbc7fbaf72c /argv.go
parent0eaa9d0408d07b1c8c5214775ebb942dc210002b (diff)
good deal
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 {