From dd6d1a639b86ab12a2bf537b8588dd5ae60cdad7 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 20 Dec 2023 16:59:07 -0600 Subject: remove example with circular dependancies Signed-off-by: Jeff Carr --- examples/cloudflare/argv.go | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 examples/cloudflare/argv.go (limited to 'examples/cloudflare/argv.go') 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) - -} -- cgit v1.2.3