summaryrefslogtreecommitdiff
path: root/argv.struct.go
blob: 41c5a7a42f8d74274ff36e0439cf6019d8cfc61a (plain)
1
2
3
4
5
6
7
8
9
10
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 {
}