summaryrefslogtreecommitdiff
path: root/argv.go
blob: 994fd8ece43538bb80a5afbfe2e7ac4615e50474 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

/*
	this enables command line options from other packages like 'gui' and 'log'
*/

import 	(
	arg "github.com/alexflint/go-arg"
	"go.wit.com/gui/gui"
	"go.wit.com/log"
)


func init() {
	arg.MustParse()
	log.Bool(true, "INIT() args.ArgDebug =", gui.ArgDebug())
}