diff options
author | Valery Piashchynski <[email protected]> | 2020-02-17 19:16:33 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-02-17 19:16:33 +0300 |
commit | 6fb73b5fcca8d40f5fb3789875480f1e8151db6a (patch) | |
tree | a39615a0a78fecb67a2bbac4c32122fee59dc689 /cmd | |
parent | 50b46c8d3c0e1f13623e2cd7cbb1302ae66ed308 (diff) |
Remove unused errors
Put reload service import in proper place
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/rr/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go index 46431e49..54a1f060 100644 --- a/cmd/rr/main.go +++ b/cmd/rr/main.go @@ -24,7 +24,6 @@ package main import ( rr "github.com/spiral/roadrunner/cmd/rr/cmd" - "github.com/spiral/roadrunner/service/reload" // services (plugins) "github.com/spiral/roadrunner/service/env" @@ -34,6 +33,7 @@ import ( "github.com/spiral/roadrunner/service/http" "github.com/spiral/roadrunner/service/limit" "github.com/spiral/roadrunner/service/metrics" + "github.com/spiral/roadrunner/service/reload" "github.com/spiral/roadrunner/service/rpc" "github.com/spiral/roadrunner/service/static" |