treasurer/version/version.go
2023-05-16 19:21:56 +03:00

22 lines
297 B
Go

package version
var (
BuildTime = "unset"
Commit = "unset"
Release = "unset"
)
type InfoVersion struct {
BuildTime string
Commit string
Release string
}
func GetVersion() InfoVersion {
return InfoVersion{
BuildTime: BuildTime,
Commit: Commit,
Release: Release,
}
}