diff options
Diffstat (limited to 'argv.custom.go')
| -rw-r--r-- | argv.custom.go | 15 |
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 +` +} |
