diff options
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 11 | 
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +package main + +var argv args + +type args struct { +	Demo *EmptyCmd `arg:"subcommand:demo"                      help:"this is just a demo"` +	// Demo string `arg:"positional"                   help:"this is just a demo"` +} + +type EmptyCmd struct { +}  | 
