diff options
Diffstat (limited to 'examples/control-panel-cloudflare/argv.go')
| -rw-r--r-- | examples/control-panel-cloudflare/argv.go | 27 |
1 files changed, 7 insertions, 20 deletions
diff --git a/examples/control-panel-cloudflare/argv.go b/examples/control-panel-cloudflare/argv.go index 49167cd..7bacec2 100644 --- a/examples/control-panel-cloudflare/argv.go +++ b/examples/control-panel-cloudflare/argv.go @@ -1,30 +1,17 @@ -// This creates a simple hello world window package main +/* + this enables command line options from other packages like 'gui' and 'log' +*/ + import ( - "fmt" arg "github.com/alexflint/go-arg" "go.wit.com/gui" - log "go.wit.com/gui/log" + "go.wit.com/log" ) -var args struct { - Foo string - Bar bool - User string `arg:"env:USER"` - Demo bool `help:"run a demo"` - gui.GuiArgs - log.LogArgs -} - func init() { - arg.MustParse(&args) - fmt.Println(args.Foo, args.Bar, args.User) - - if (args.Gui != "") { - gui.GuiArg.Gui = args.Gui - } - log.Log(true, "INIT() args.GuiArg.Gui =", gui.GuiArg.Gui) - + arg.MustParse() + log.Bool(true, "INIT() args.ArgDebug =", gui.ArgDebug()) } |
