summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-19 12:57:22 -0500
committerJeff Carr <[email protected]>2025-10-19 12:57:22 -0500
commitf914e39be658e0bfa773f030cb9d185d398109ae (patch)
treed19750034cc791f309db0300a67954647e553553 /structs.go
parent8c44dd2eb48319b3511982e78dc6ef06b43ea3ac (diff)
populate pb.AppInfov0.0.42
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go9
1 files changed, 1 insertions, 8 deletions
diff --git a/structs.go b/structs.go
index 66b8cf3..1306701 100644
--- a/structs.go
+++ b/structs.go
@@ -1,7 +1,5 @@
package argvpb
-import "time"
-
// try this struct out (?)
var me *AutoArgs
@@ -23,10 +21,5 @@ type AutoArgs struct {
buildtime func() (string, string) // some examples
autoFunc func(*Argv) // also a function for autocomplete
guiFunc func() error // enables Gui functions
- ARGNAME string // a good way to track the name of the binary ?
- VERSION string
- BUILDTIME *time.Time
- err error // store any errors from argv
- // hidden bool // don't update the toolkits when it's hidden
- // pp *arg.Parser // for parsing the command line args. Yay to alexf lint!
+ err error // store any errors from argv
}