summaryrefslogtreecommitdiff
path: root/examples/cloudflare/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-12-20 16:59:07 -0600
committerJeff Carr <[email protected]>2023-12-20 16:59:07 -0600
commitdd6d1a639b86ab12a2bf537b8588dd5ae60cdad7 (patch)
treed3621d40daa5abe754a2eebe2f030f04b72714f3 /examples/cloudflare/argv.go
parent9f7da73c67e391e1797479f99a0578bde0fe2c0e (diff)
remove example with circular dependanciesv0.9.1
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'examples/cloudflare/argv.go')
-rw-r--r--examples/cloudflare/argv.go30
1 files changed, 0 insertions, 30 deletions
diff --git a/examples/cloudflare/argv.go b/examples/cloudflare/argv.go
deleted file mode 100644
index 49167cd..0000000
--- a/examples/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"
- "go.wit.com/gui"
- log "go.wit.com/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)
-
-}