summaryrefslogtreecommitdiff
path: root/examples/control-panel-cloudflare/argv.go
blob: 7bacec2610546028dad52d96686d2a292d22818c (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"
	"go.wit.com/log"
)


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