diff options
author | Wolfy-J <[email protected]> | 2018-06-23 20:35:37 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-23 20:35:37 +0300 |
commit | a47fdb8b8c93a8e2c9af1d786e746b145f4b16ed (patch) | |
tree | 798a5ec93caf09bd5873e5fd777f8cedb5089672 /cmd | |
parent | 69e6ffecc4ac76e97e463ef2442ba86eebf35d27 (diff) |
custom version
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/rr/cmd/version.go | 6 |
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() ) |