diff options
| author | Jeff Carr <[email protected]> | 2025-10-17 14:58:05 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-17 14:58:05 -0500 |
| commit | 9b1665a6ee7ec182d55b781eac4adea0c29910d8 (patch) | |
| tree | bfd8b1838bc60336d260484a1de1fbbc7fbaf72c /argv.go | |
| parent | 0eaa9d0408d07b1c8c5214775ebb942dc210002b (diff) | |
good deal
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 { |
