You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
280 B

package meta
// Meta variables set dynamically by the linker at build time
var (
Version string
GitCommit string
)
// FullVersion returns the version string in the form of
// ([major].[minor].[patch]+[commit])
func FullVersion() string {
return Version + "+" + GitCommit
}