diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -5,6 +5,7 @@ import ( "go.wit.com/log" "go.wit.com/gui/gui" + "go.wit.com/gui/debugger" "go.wit.com/gui/digitalocean" ) @@ -24,6 +25,11 @@ func main() { myDo.Update() myDo.Show() + if debugger.ArgDebug() { + log.Sleep(2) + debugger.DebugWindow(myGui) + } + doUpdate() // This is just a optional goroutine to watch that things are alive gui.Watchdog() |
