22 lines
534 B
Go
22 lines
534 B
Go
/*
|
|
Package version provides build-time version information for rs2322tcp.
|
|
|
|
The variables are normally overwritten during the build using the
|
|
Go linker (-ldflags). Development builds use default values.
|
|
|
|
Project: rs2322tcp
|
|
Module: git.lang-dieter.de/rs2322tcp
|
|
*/
|
|
package version
|
|
|
|
// Version contains the application version.
|
|
var Version = "dev"
|
|
|
|
// Build contains the Git build number.
|
|
var Build = "0"
|
|
|
|
// Commit contains the short Git commit ID.
|
|
var Commit = "unknown"
|
|
|
|
// Date contains the build date and time.
|
|
var Date = "unknown"
|