diff options
| author | Jeff Carr <[email protected]> | 2023-12-29 17:29:47 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-12-29 17:29:47 -0600 |
| commit | 867b69f5557ebe5665c0d52467b8b4a5980aa33a (patch) | |
| tree | 537b1fb5cf8f428a95b7214edccab99efd75ad6a /examples/control-panel-cloudflare/argv.go | |
| parent | a3dd21aef045f2038911585a238acac65884d314 (diff) | |
switch to using Register() from 'go-arg'
implement 'universal' use of go-arg
Signed-off-by: Jeff Carr <[email protected]>
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()) } |
