summaryrefslogtreecommitdiff
path: root/args.go
blob: 75b4e204418fdab7b07a9be8e37451d92f2d1012 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package gadgets

// initializes logging and command line options

import (
	"go.wit.com/log"
)

var INFO *log.LogFlag

func init() {
	full := "go.wit.com/gui/gadget"
	short := "gadgets"

	INFO = log.NewFlag("INFO", false, full, short, "General Info")
}