summaryrefslogtreecommitdiff
path: root/debugger.go
diff options
context:
space:
mode:
Diffstat (limited to 'debugger.go')
-rw-r--r--debugger.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/debugger.go b/debugger.go
deleted file mode 100644
index 116d549..0000000
--- a/debugger.go
+++ /dev/null
@@ -1,26 +0,0 @@
-package main
-
-/*
- enables GUI options and the debugger in your application
-*/
-
-import (
- "go.wit.com/dev/alexflint/arg"
- "go.wit.com/lib/debugger"
- "go.wit.com/log"
-)
-
-var args struct {
-}
-
-func init() {
- arg.MustParse(&args)
-
- if debugger.ArgDebug() {
- log.Info("cmd line --debugger == true")
- go func() {
- log.Sleep(2)
- debugger.DebugWindow()
- }()
- }
-}