summaryrefslogtreecommitdiff
path: root/args.go
blob: aa8d2246126944d2e0b3160b4af2c49fba25fd58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// This creates a simple hello world window
package main

import 	(
	"git.wit.org/wit/gui"
)

type LogOptions struct {
	LogFile string
	Verbose bool
	// GuiDebug bool `help:"open up the wit/gui Debugging Window"`
	// GuiDemo bool `help:"open the wit/gui Demo Window"`
	User string `arg:"env:USER"`
}

var args struct {
	LogOptions
	gui.GuiArgs
}