summaryrefslogtreecommitdiff
path: root/argv.custom.go
blob: 066d80ad3736b94df9c0983ee663e017121e0690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
`
}