diff options
| author | Jeff Carr <[email protected]> | 2025-10-17 15:43:30 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-17 15:43:30 -0500 |
| commit | 81dde3b0067315b3126438b220e5ab5026a74c20 (patch) | |
| tree | c6d53a70c5ef79f8673fc3992eedb9cc26614eef /structs.go | |
| parent | 7b2263c9beaa63f041074b5cd21e692188a0a9e6 (diff) | |
argv moved to protobuf location
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,7 +8,7 @@ import ( "go.wit.com/gui" "go.wit.com/lib/gadgets" - "go.wit.com/lib/gui/prep" + "go.wit.com/lib/protobuf/argvpb" "go.wit.com/lib/protobuf/zoopb" ) @@ -16,7 +16,7 @@ var me *mainType // this app's variables type mainType struct { - auto *prep.Auto // more experiments for bash handling + argv *argvpb.Argv // shell autocomplete hostname string // my fqdn dns zookeeper hostname pollDelay time.Duration // how often to report our status dog *time.Ticker // the watchdog timer @@ -26,7 +26,7 @@ type mainType struct { machines *zoopb.Machines // every machine that has reported itself to the zookeeper targets map[string]string // what versions the machines should be running upgrade map[string]bool // use this to trigger builds - myGui *prep.GuiPrep // the gui toolkit handle + myGui *argvpb.GuiPrep // the gui toolkit handle machinesWin *gadgets.GenericWindow // the machines gui window machinesBox *gui.Node // the machines gui parent box widget machinesTB *zoopb.MachinesTable // the machines gui table buffer |
