summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-19 11:41:24 -0500
committerJeff Carr <[email protected]>2025-10-19 11:41:24 -0500
commit8c44dd2eb48319b3511982e78dc6ef06b43ea3ac (patch)
treedc5d0a2341378a0b02a739273cf364516dd089b4 /structs.go
parent478735e1a7053ccab711a918b7db13ac59081827 (diff)
further cleanup order of theMagic()
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/structs.go b/structs.go
index 9ddaab1..66b8cf3 100644
--- a/structs.go
+++ b/structs.go
@@ -10,7 +10,7 @@ type AutoArgs struct {
pb *Argv // the protobuf for the current process
id int // should be unique
Argv func([]string) // the function for shell autocomplete
- initArgv func() (string, string, string) // this is required. gets APPNAME, BUILDTIME & VERSION
+ initArgvFunc func() (string, string, string) // this is required. gets APPNAME, BUILDTIME & VERSION
initGuiFunc func() error // this is required for 'gui' args to work
mustParseFunc func() error // calls go-arg.MustParse()
parseFlagsFunc func([]string) error // calls go-arg.ParseFlags(flags)