diff options
author | Valery Piashchynski <[email protected]> | 2020-12-25 14:46:01 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-25 14:46:01 +0300 |
commit | 8526c03822e724bc2ebb64b6197085fea335b782 (patch) | |
tree | b205b392b3721606fae4fa3174327259b41bc76a /tests/plugins/server | |
parent | 42b33b77793789d666451798b07587f6404242b4 (diff) |
Move root plugins to the pkg
Diffstat (limited to 'tests/plugins/server')
-rw-r--r-- | tests/plugins/server/plugin_pipes.go | 2 | ||||
-rw-r--r-- | tests/plugins/server/plugin_sockets.go | 2 | ||||
-rw-r--r-- | tests/plugins/server/plugin_tcp.go | 2 | ||||
-rw-r--r-- | tests/plugins/server/server_test.go | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/plugins/server/plugin_pipes.go b/tests/plugins/server/plugin_pipes.go index afed695f..6f31395a 100644 --- a/tests/plugins/server/plugin_pipes.go +++ b/tests/plugins/server/plugin_pipes.go @@ -8,9 +8,9 @@ import ( "github.com/spiral/roadrunner-plugins/config" "github.com/spiral/roadrunner/v2/interfaces/pool" "github.com/spiral/roadrunner/v2/pkg/payload" + "github.com/spiral/roadrunner/v2/pkg/plugins/server" poolImpl "github.com/spiral/roadrunner/v2/pkg/pool" "github.com/spiral/roadrunner/v2/pkg/worker" - "github.com/spiral/roadrunner/v2/plugins/server" ) const ConfigSection = "server" diff --git a/tests/plugins/server/plugin_sockets.go b/tests/plugins/server/plugin_sockets.go index f5f8f7ad..1820b4c1 100644 --- a/tests/plugins/server/plugin_sockets.go +++ b/tests/plugins/server/plugin_sockets.go @@ -7,8 +7,8 @@ import ( "github.com/spiral/roadrunner-plugins/config" "github.com/spiral/roadrunner/v2/interfaces/pool" "github.com/spiral/roadrunner/v2/pkg/payload" + "github.com/spiral/roadrunner/v2/pkg/plugins/server" "github.com/spiral/roadrunner/v2/pkg/worker" - "github.com/spiral/roadrunner/v2/plugins/server" ) type Foo2 struct { diff --git a/tests/plugins/server/plugin_tcp.go b/tests/plugins/server/plugin_tcp.go index 2f33659c..01fa0cf5 100644 --- a/tests/plugins/server/plugin_tcp.go +++ b/tests/plugins/server/plugin_tcp.go @@ -7,8 +7,8 @@ import ( "github.com/spiral/roadrunner-plugins/config" "github.com/spiral/roadrunner/v2/interfaces/pool" "github.com/spiral/roadrunner/v2/pkg/payload" + "github.com/spiral/roadrunner/v2/pkg/plugins/server" "github.com/spiral/roadrunner/v2/pkg/worker" - "github.com/spiral/roadrunner/v2/plugins/server" ) type Foo3 struct { diff --git a/tests/plugins/server/server_test.go b/tests/plugins/server/server_test.go index 5be25a20..75111ef7 100644 --- a/tests/plugins/server/server_test.go +++ b/tests/plugins/server/server_test.go @@ -9,7 +9,7 @@ import ( "github.com/spiral/endure" "github.com/spiral/roadrunner-plugins/config" "github.com/spiral/roadrunner-plugins/logger" - "github.com/spiral/roadrunner/v2/plugins/server" + "github.com/spiral/roadrunner/v2/pkg/plugins/server" "github.com/stretchr/testify/assert" ) |