blob: e86eb08a63f7b57fd339e0d030dd2cd1c3b5c667 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  | 
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 {
	Daemon bool `arg:"--daemon" help:"run without a gui"`
}
func init() {
	arg.MustParse(&args)
	if debugger.ArgDebug() {
		log.Info("cmd line --debugger == true")
		go func() {
			log.Sleep(2)
			debugger.DebugWindow()
		}()
	}
}
  |