diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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() |
