summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-27 14:36:41 -0600
committerJeff Carr <[email protected]>2024-01-27 14:36:41 -0600
commitd8555dc86fdf7c0b68a93ed6d9cc74ee14b9a22b (patch)
tree2f85bc80f30bb747704cfc33ba6c9b3dabbdccd6 /main.go
parente4672283ce5800cb55dc12886b5bc761013f0ac6 (diff)
new gui & release managment
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/main.go b/main.go
index d53f237..c68c763 100644
--- a/main.go
+++ b/main.go
@@ -1,7 +1,6 @@
package main
import (
- "go.wit.com/log"
"go.wit.com/gui"
"go.wit.com/lib/debugger"
"go.wit.com/lib/gui/cloudflare"
@@ -15,21 +14,20 @@ var myGui *gui.Node
func main() {
// send all log() output to a file in /tmp
- log.SetTmp()
+ // log.SetTmp()
// parse the config file
readConfig()
// initialize a new GO GUI instance
myGui = gui.New()
- myGui.LoadToolkit("andlabs")
myGui.Default()
-
// draw the cloudflare control panel window
win := cloudflare.MakeCloudflareWindow(myGui)
win.SetTitle(title)
win.Show()
+ win.Draw()
// This is just a optional goroutine to watch that things are alive
gui.Watchdog()