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

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

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

	"go.wit.com/gui/gui"
)


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