summaryrefslogtreecommitdiff
path: root/cmd/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/main.go')
-rw-r--r--cmd/main.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/main.go b/cmd/main.go
index 4e7fc099..36638836 100644
--- a/cmd/main.go
+++ b/cmd/main.go
@@ -17,6 +17,14 @@ import (
"github.com/spiral/roadrunner/v2/plugins/rpc"
)
+var (
+ // Version - defines build version.
+ Version = "local"
+
+ // BuildTime - defined build time.
+ BuildTime = "development"
+)
+
func main() {
var err error
cli.Container, err = endure.NewContainer(nil, endure.SetLogLevel(endure.ErrorLevel), endure.RetryOnFail(false))