summaryrefslogtreecommitdiff
path: root/debugger.go
blob: f7a6acad16ae158788bdefb2d9f1534c5c4539f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main

/*
	enables GUI options and the debugger in your application
*/

import (
	"go.wit.com/lib/debugger"
	"go.wit.com/log"
)

func init() {
	if debugger.ArgDebug() {
		log.Info("cmd line --debugger == true")
		go func() {
			log.Sleep(2)
			debugger.DebugWindow()
		}()
	}
}