summaryrefslogtreecommitdiff
path: root/debugger.go
diff options
context:
space:
mode:
Diffstat (limited to 'debugger.go')
-rw-r--r--debugger.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/debugger.go b/debugger.go
deleted file mode 100644
index f7a6aca..0000000
--- a/debugger.go
+++ /dev/null
@@ -1,20 +0,0 @@
-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()
- }()
- }
-}