diff options
| author | Jeff Carr <[email protected]> | 2025-09-09 06:16:41 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-09 06:16:41 -0500 |
| commit | 8ab09243500576460a9e5b12cae0b997933d6577 (patch) | |
| tree | 07a8b5113c812f0cc31d301f2784ef9e48b92d90 /structs.go | |
| parent | 58e2a02c5bffdab2eac0da83c3810f1d808da7df (diff) | |
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -7,15 +7,18 @@ import ( sync "sync" "time" + "go.wit.com/dev/alexflint/arg" "go.wit.com/gui" "go.wit.com/lib/gadgets" + "go.wit.com/lib/gui/prep" ) var me *gusconf // this app's variables type gusconf struct { - myGui *gui.Node // the base of the gui + pp *arg.Parser // for parsing the command line args. Yay to alexf lint! + myGui *prep.GuiPrep // the base of the gui portmaps *Portmaps // the portmap window portwin *stdTableWin // the portwin window events *Events // the event log |
