Files
opencloud/pkg/version/version.go
Thomas Müller d9e7f1a986 init
2019-12-04 17:15:11 +01:00

19 lines
242 B
Go

package version
import (
"time"
)
var (
// String gets defined by the build system.
String = "0.0.0"
// Date indicates the build date.
Date = "00000000"
)
func Compiled() time.Time {
t, _ := time.Parse("20060102", Date)
return t
}