diff options
| author | Jeff Carr <[email protected]> | 2024-01-05 00:07:13 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-05 00:07:13 -0600 |
| commit | ff21dba712e5c63ec3dab1defe55c63c98eb3226 (patch) | |
| tree | 3b76a4e86eaec1613346f59d903fb3d14af08cee /main.go | |
| parent | 3baa63dadf31c9b30f364e19e3f2c514157bca36 (diff) | |
convert to gadget.BasicWindow()
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -20,8 +20,6 @@ import ( "github.com/miekg/dns" ) -var myGui *gui.Node - //go:embed plugins/*.so var resToolkit embed.FS @@ -41,14 +39,14 @@ func main() { // send all log() output to a file in /tmp log.SetTmp() - myGui = gui.New().Default() + me.myGui = gui.New().Default() log.Sleep(me.artificialSleep) setupControlPanelWindow() if debugger.ArgDebug() { log.Sleep(2) - debugger.DebugWindow(myGui) + debugger.DebugWindow(me.myGui) } // forever monitor for network and dns changes |
