summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-23 20:35:37 +0300
committerWolfy-J <[email protected]>2018-06-23 20:35:37 +0300
commita47fdb8b8c93a8e2c9af1d786e746b145f4b16ed (patch)
tree798a5ec93caf09bd5873e5fd777f8cedb5089672 /cmd
parent69e6ffecc4ac76e97e463ef2442ba86eebf35d27 (diff)
custom version
Diffstat (limited to 'cmd')
-rw-r--r--cmd/rr/cmd/version.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd/rr/cmd/version.go b/cmd/rr/cmd/version.go
index fb7a2f88..b134a70b 100644
--- a/cmd/rr/cmd/version.go
+++ b/cmd/rr/cmd/version.go
@@ -1,8 +1,10 @@
package cmd
+import "time"
+
var (
// Version - defines build version.
- Version = "1.0.0"
+ Version = "development"
// BuildTime - defined build time.
- BuildTime = "development"
+ BuildTime = time.Now()
)