blob: d48658fb5a392aec17bc681675c66b40af6c73cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package gui
var ArgvGui ArgsGui
// these go-arg commands have been moved to go.wit.com/lib/gui/prep
type ArgsGui struct {
Gui *GuiCmd `arg:"subcommand:gui" help:"open the gui"`
GuiPlugin string
GuiFile string
}
type GuiCmd struct {
URL string `arg:"--connect" help:"forge url"`
Plugin string `arg:"positional" help:"this is just a demo"`
}
|