diff options
| author | Jeff Carr <[email protected]> | 2025-10-17 16:29:45 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-17 16:29:45 -0500 |
| commit | e4f3c02a6f97810aa69a85e81a994c12b33a8ca8 (patch) | |
| tree | 51141336fda0e0a9e65ad13abb3594b64643c80e /structs.go | |
| parent | c9e79a11c7caeabc8a6f7b2d2217a3af80c4797c (diff) | |
renamed lib to argvpb
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -5,18 +5,18 @@ package main import ( "go.wit.com/gui" - "go.wit.com/lib/gui/prep" + "go.wit.com/lib/protobuf/argvpb" ) var me *autoType // this app's variables type autoType struct { - auto *prep.Auto // more experiments for bash handling - 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 + argv *argvpb.Argv // shell autocomplete + myGui *argvpb.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 } |
