summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
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()