All Downloads are FREE. Search and download functionalities are using the official Maven repository.

common.version.detail.go Maven / Gradle / Ivy

There is a newer version: 2.9.1
Show newest version
package version

import "strings"

var detailBuilder strings.Builder

func AddVersionDetail(detail string) {
	detailBuilder.WriteString(detail)
}

func GetVersionDetail() string {
	return detailBuilder.String()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy