diff options
| author | Jeff Carr <[email protected]> | 2025-08-17 17:02:29 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-17 22:57:06 -0500 |
| commit | 25c604aeee7cd821d27dfd4c09bf0626e9312535 (patch) | |
| tree | e7b875d4077ffb7fa265c7a1bd8fefafbc9d0235 /structs.go | |
| parent | bd5b16d8755bc9e5f0dc90162bc4724d319c725e (diff) | |
protobuf file for block devices
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -12,9 +12,11 @@ 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 string // the current dev entry to work on + 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 } |
