summaryrefslogtreecommitdiff
path: root/argv.go
blob: 48a7dbdb41fdcc387ea83576ae52e2f4cc9112f4 (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 {
}