summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-09 05:07:45 -0500
committerJeff Carr <[email protected]>2025-09-09 05:07:45 -0500
commit72a360cb950c48f1556ce48b5fad16b17ca7fcc4 (patch)
treebd2f66aaac812860d21ac526a85e7c6c96b6353a /structs.go
parentcd4e1f9867776f245d8fb0938ec4999cd8e28d41 (diff)
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/structs.go b/structs.go
index bac17be..2373661 100644
--- a/structs.go
+++ b/structs.go
@@ -6,17 +6,18 @@ package main
import (
"go.wit.com/dev/alexflint/arg"
"go.wit.com/gui"
+ "go.wit.com/lib/gui/prep"
)
var me *autoType
// this app's variables
type autoType struct {
- pp *arg.Parser // go-arg preprocessor
- myGui *gui.Node // the gui toolkit handle
- dd *gui.Node // the drives dropdown list
- parted *gui.Node // the current drive to run parted on
- currentDev *Block // the current dev entry to work on
- pb *Blocks // the block dev protobuf
- driveInfoBox *gui.Node // displays the drive info
+ pp *arg.Parser // go-arg preprocessor
+ myGui *prep.GuiPrep // the gui toolkit handle
+ dd *gui.Node // the drives dropdown list
+ parted *gui.Node // the current drive to run parted on
+ currentDev *Block // the current dev entry to work on
+ pb *Blocks // the block dev protobuf
+ driveInfoBox *gui.Node // displays the drive info
}