Initial boilerplate from boilr-ocis-extension.

This commit is contained in:
Benedikt Kulmann
2020-04-07 15:06:08 +02:00
parent 6fdbbd7e8e
commit a8af03c338
43 changed files with 3481 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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
}