diff options
| author | Jeff Carr <[email protected]> | 2024-01-27 14:36:41 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-27 14:36:41 -0600 |
| commit | d8555dc86fdf7c0b68a93ed6d9cc74ee14b9a22b (patch) | |
| tree | 2f85bc80f30bb747704cfc33ba6c9b3dabbdccd6 /main.go | |
| parent | e4672283ce5800cb55dc12886b5bc761013f0ac6 (diff) | |
new gui & release managment
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
@@ -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() |
