summaryrefslogtreecommitdiff
path: root/argv.custom.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-18 05:09:39 -0500
committerJeff Carr <[email protected]>2025-10-18 05:09:39 -0500
commit2ea632eac5a877567fc44cb2af9aef414de3e7dd (patch)
tree946f513adb4d8b4a86a82d0d2a12430e0914f0a4 /argv.custom.go
parentd68c81c1add8b09aed8b8a19c6b61610a9ff8605 (diff)
breakup argv files for sanity
Diffstat (limited to 'argv.custom.go')
-rw-r--r--argv.custom.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/argv.custom.go b/argv.custom.go
new file mode 100644
index 0000000..066d80a
--- /dev/null
+++ b/argv.custom.go
@@ -0,0 +1,15 @@
+package main
+
+// this is where to customize argv for your application
+
+var APPNAME string = "basicwindow"
+
+// sent via -ldflags
+var VERSION string
+var BUILDTIME string
+
+func (a args) Description() string {
+ return `
+This basicwindow example demonstrates multiple windows
+`
+}