Files
opencloud/graph/pkg/version/version.go
A.Unger 2723f17587 Add 'graph/' from commit 'f1efaddc27c74c9de4509cd864fc673ffdf52e19'
git-subtree-dir: graph
git-subtree-mainline: 396d5d3a2f
git-subtree-split: f1efaddc27
2020-09-18 12:59:28 +02:00

20 lines
296 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"
)
// Compiled returns the compile time of this service.
func Compiled() time.Time {
t, _ := time.Parse("20060102", Date)
return t
}