8 lines
180 B
Go
8 lines
180 B
Go
package core
|
|
|
|
var (
|
|
// Version is the current Semantic Version
|
|
Version = "0.0.1-dev"
|
|
// BuildTime is the timestamp (ISO-8601) of the build
|
|
BuildTime = "0001-01-01T00:00:00Z"
|
|
)
|