blob: 8cbf7f692a49b2fea94b4648c110c9039a965491 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package cmd
import "time"
var (
// Version - defines build version.
Version = "development"
// BuildTime - defined build time.
BuildTime = time.Now().Format(time.RFC1123)
)
|