Skip to content
Snippets Groups Projects
main.go 209 B
Newer Older
steeve.chailloux's avatar
steeve.chailloux committed
package beaver

var (
	version   = ""
	commitSha = ""
	buildDate = ""
)
steeve.chailloux's avatar
steeve.chailloux committed

func Version() string {
steeve.chailloux's avatar
steeve.chailloux committed
	return version
}
func CommitSha() string {
	return commitSha
}

func BuildDate() string {
	return buildDate
}