summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-12-25 14:46:01 +0300
committerValery Piashchynski <[email protected]>2020-12-25 14:46:01 +0300
commit8526c03822e724bc2ebb64b6197085fea335b782 (patch)
treeb205b392b3721606fae4fa3174327259b41bc76a /cmd
parent42b33b77793789d666451798b07587f6404242b4 (diff)
Move root plugins to the pkg
Diffstat (limited to 'cmd')
-rw-r--r--cmd/cli/workers.go2
-rw-r--r--cmd/main.go6
2 files changed, 4 insertions, 4 deletions
diff --git a/cmd/cli/workers.go b/cmd/cli/workers.go
index 03639aa4..94c339e2 100644
--- a/cmd/cli/workers.go
+++ b/cmd/cli/workers.go
@@ -13,7 +13,7 @@ import (
"github.com/fatih/color"
"github.com/spf13/cobra"
"github.com/spiral/errors"
- "github.com/spiral/roadrunner/v2/plugins/informer"
+ "github.com/spiral/roadrunner/v2/pkg/plugins/informer"
"github.com/spiral/roadrunner/v2/tools"
)
diff --git a/cmd/main.go b/cmd/main.go
index 5893fbcb..ec3d84ff 100644
--- a/cmd/main.go
+++ b/cmd/main.go
@@ -4,9 +4,9 @@ import (
"log"
"github.com/spiral/endure"
- "github.com/spiral/roadrunner/v2/plugins/http"
- "github.com/spiral/roadrunner/v2/plugins/informer"
- "github.com/spiral/roadrunner/v2/plugins/server"
+ "github.com/spiral/roadrunner/v2/pkg/plugins/http"
+ "github.com/spiral/roadrunner/v2/pkg/plugins/informer"
+ "github.com/spiral/roadrunner/v2/pkg/plugins/server"
"github.com/spiral/roadrunner-plugins/logger"
"github.com/spiral/roadrunner-plugins/metrics"