diff options
| author | Jeff Carr <[email protected]> | 2025-10-19 05:19:01 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-19 05:19:01 -0500 |
| commit | 26cef99d4deca65ef664459ba4278d5346883013 (patch) | |
| tree | 8fced95774dbe3d908bc8bf9c339666d805c0145 /structs.go | |
| parent | e4f3c02a6f97810aa69a85e81a994c12b33a8ca8 (diff) | |
thank goodness. not really. argv is still a messv0.0.33
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -4,7 +4,9 @@ package main import ( + "go.wit.com/dev/alexflint/arg" "go.wit.com/gui" + "go.wit.com/lib/fhelp" "go.wit.com/lib/protobuf/argvpb" ) @@ -12,11 +14,13 @@ var me *autoType // this app's variables type autoType struct { - 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 + argv *argvpb.Argv // more experiments for bash handling + pp *arg.Parser // for parsing the command line args. Yay to alexf lint! + myGui *fhelp.GuiPrep // for initializing the GUI toolkits + gui *gui.Node // the drives dropdown list + 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 } |
