diff options
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -9,11 +9,13 @@ package main var argv args type args struct { - LoBase string `arg:"--lobase" help:"lowercase basename"` - UpBase string `arg:"--upbase" help:"uppercase basename"` - Proto string `arg:"--proto" help:"the .proto filename"` - Sort []string `arg:"--sort" help:"how and what to sort on"` - DryRun bool `arg:"--dry-run" help:"show what would be run"` + LoBase string `arg:"--lobase" help:"lowercase basename"` + UpBase string `arg:"--upbase" help:"uppercase basename"` + Proto string `arg:"--proto" help:"the .proto filename"` + Sort []string `arg:"--sort" help:"how and what to sort on"` + Marshal []string `arg:"--marshal" help:"what to marshal on"` + NoMarshal bool `arg:"--no-marshal" help:"do not make a marshal.pb.go file"` + DryRun bool `arg:"--dry-run" help:"show what would be run"` } func (a args) Description() string { |
