Captain ALM
ef3c387f39
All checks were successful
continuous-integration/drone/push Build is passing
Improve Makefile and add new compilation fields.
14 lines
329 B
Go
14 lines
329 B
Go
package info
|
|
|
|
var BuildName string
|
|
var BuildDescription string
|
|
var BuildVersion string
|
|
var BuildDate string
|
|
|
|
func SetupProductInfo(buildName string, buildDescription string, buildVersion string, buildDate string) {
|
|
BuildName = buildName
|
|
BuildDescription = buildDescription
|
|
BuildVersion = buildVersion
|
|
BuildDate = buildDate
|
|
}
|