diff options
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -70,8 +70,14 @@ type FixCmd struct { } type VerifyCmd struct { - All *EmptyCmd `arg:"subcommand:all" help:"show mtime changes"` - List bool `arg:"--list" help:"list all stats"` + Namespace *EmptyCmd `arg:"subcommand:namespace" help:"check the namespaces"` + Stats *StatsCmd `arg:"subcommand:stats" help:"generate origin.pb"` +} + +type StatsCmd struct { + All bool `arg:"--all" help:"process all stats"` + Sizes bool `arg:"--sizes" help:"show sizes"` + List bool `arg:"--list" help:"list all stats"` } func (ShowCmd) Examples() string { |
