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"` }