summaryrefslogtreecommitdiff
path: root/argv.struct.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-26 10:37:57 -0500
committerJeff Carr <[email protected]>2025-10-26 10:37:57 -0500
commit80d55ea478cb46de0da2d200173db11f804f0feb (patch)
treefe00af29d1ab29170968353a1b08ce43907134e8 /argv.struct.go
parentfc6e055773cd872355c2ebddd223a99e16074b8a (diff)
newer cleaner better argvv0.0.99
Diffstat (limited to 'argv.struct.go')
-rw-r--r--argv.struct.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/argv.struct.go b/argv.struct.go
deleted file mode 100644
index 308132e..0000000
--- a/argv.struct.go
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
-// Use of this source code is governed by the GPL 3.0
-
-package main
-
-var argv args
-
-type args struct {
- Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"`
- List *EmptyCmd `arg:"subcommand:list" help:"list the machines in your zoo"`
- Upgrade *EmptyCmd `arg:"subcommand:upgrade" help:"upgrade the machines"`
- Verbose bool `arg:"--verbose" default:"false" help:"talk more"`
- Daemon bool `arg:"--daemon" default:"false" help:"run in daemon mode"`
- Port int `arg:"--port" default:"8080" help:"port to run on"`
- NoPort bool `arg:"--no-port" help:"don't open socket"`
- Bash bool `arg:"--bash" help:"generate bash completion"`
- BashAuto []string `arg:"--auto-complete" help:"todo: move this to go-arg"`
-}
-
-type EmptyCmd struct {
-}