diff options
| author | Jeff Carr <[email protected]> | 2025-09-04 08:28:09 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-04 08:28:09 -0500 |
| commit | 680069d4ca65c75ce1d7d462d98ce7e9e4c8bfdc (patch) | |
| tree | c45dfb05f2282fc039318ac7395d929c1d632e8f /structs.go | |
| parent | b02060493197150ef20776cbf920abb81a3844b1 (diff) | |
a breath of fresh air. finally can remove all the old code.
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -22,13 +22,12 @@ func (b *mainType) Enable() { // this app's variables type mainType struct { - pp *arg.Parser // for parsing the command line args. Yay to alexf lint! - forge *forgepb.Forge // for holding the forge protobuf files - myGui *gui.Node // the gui toolkit handle - psets *forgepb.Patchsets // the locally stored on disk patchsets - foundPaths []string // stores gopaths to act on (when doing go-clone) - configSave bool // if the config file should be saved after finishing - urlbase string // base URL + pp *arg.Parser // for parsing the command line args. Yay to alexf lint! + forge *forgepb.Forge // for holding the forge protobuf files + myGui *gui.Node // the gui toolkit handle + foundPaths []string // stores gopaths to act on (when doing go-clone) + configSave bool // if the config file should be saved after finishing + urlbase string // base URL mainWindow *gadgets.BasicWindow mainbox *gui.Node // the main box. enable/disable this |
