diff options
Diffstat (limited to 'cmds/cloudflare/argv.go')
| -rw-r--r-- | cmds/cloudflare/argv.go | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/cmds/cloudflare/argv.go b/cmds/cloudflare/argv.go deleted file mode 100644 index 38579c7..0000000 --- a/cmds/cloudflare/argv.go +++ /dev/null @@ -1,30 +0,0 @@ -// This creates a simple hello world window -package main - -import ( - "fmt" - arg "github.com/alexflint/go-arg" - "git.wit.org/wit/gui" - log "git.wit.org/wit/gui/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) - -} |
