summaryrefslogtreecommitdiff
path: root/cmd/rr/main.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-02-23 15:31:45 +0300
committerValery Piashchynski <[email protected]>2020-02-23 15:31:45 +0300
commitee15f84a9b545ba99c8d678f14367e216e9980f2 (patch)
tree93a42635035057b7b015c9d69d086fd58c1ccbf5 /cmd/rr/main.go
parent2b70159897b52e99f4040d1fe6571622c1e7459a (diff)
Fix broken imports
Diffstat (limited to 'cmd/rr/main.go')
-rw-r--r--cmd/rr/main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/rr/main.go b/cmd/rr/main.go
index f6b15b92..54a1f060 100644
--- a/cmd/rr/main.go
+++ b/cmd/rr/main.go
@@ -23,7 +23,7 @@
package main
import (
- rr "github.com/spiral/roadrunner/service/reload/cmd/rr/cmd"
+ rr "github.com/spiral/roadrunner/cmd/rr/cmd"
// services (plugins)
"github.com/spiral/roadrunner/service/env"
@@ -38,8 +38,8 @@ import (
"github.com/spiral/roadrunner/service/static"
// additional commands and debug handlers
- _ "github.com/spiral/roadrunner/service/reload/cmd/rr/http"
- _ "github.com/spiral/roadrunner/service/reload/cmd/rr/limit"
+ _ "github.com/spiral/roadrunner/cmd/rr/http"
+ _ "github.com/spiral/roadrunner/cmd/rr/limit"
)
func main() {