diff options
| author | Jeff Carr <[email protected]> | 2025-10-14 10:46:26 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-14 10:46:26 -0500 |
| commit | 87cb75966a79788f7c6192c0397b92c09114b104 (patch) | |
| tree | a6888c955c107166ebfc90fc3f6ec60ac1b7b34f /structs.go | |
| parent | baebea24dd4c7bbbbef2b1aaa7c230e43cacf4e4 (diff) | |
riscv64 builds should workv0.22.164
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -2,6 +2,7 @@ package main import ( "go.wit.com/gui" + "go.wit.com/lib/fhelp" "go.wit.com/lib/gadgets" "go.wit.com/lib/gui/prep" "go.wit.com/lib/protobuf/gitpb" @@ -11,12 +12,14 @@ var me *mainType // this app's variables type mainType struct { - auto *prep.Auto // more experiments for bash handling - goSrc string // path to ~/go/src or go.work file - goPath string // the goPath to use for the package - hasWork bool // true if using go.work file - repo *gitpb.Repo // this is the repo we are in - myGui *prep.GuiPrep // the gui toolkit handle + sh *prep.Auto // more experiments for bash handling + myGui *fhelp.GuiPrep // the gui handle itself + origGui *gui.Node // the gui handle itself + + goSrc string // path to ~/go/src or go.work file + goPath string // the goPath to use for the package + hasWork bool // true if using go.work file + repo *gitpb.Repo // this is the repo we are in } type controlBox struct { |
