summaryrefslogtreecommitdiff
path: root/plugins/http
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/http')
-rw-r--r--plugins/http/plugin.go6
-rw-r--r--plugins/http/tests/plugin1.go6
-rw-r--r--plugins/http/tests/plugin_middleware.go10
3 files changed, 11 insertions, 11 deletions
diff --git a/plugins/http/plugin.go b/plugins/http/plugin.go
index a883735a..9729a355 100644
--- a/plugins/http/plugin.go
+++ b/plugins/http/plugin.go
@@ -15,7 +15,7 @@ import (
"github.com/hashicorp/go-multierror"
"github.com/spiral/endure"
"github.com/spiral/errors"
- config2 "github.com/spiral/roadrunner/v2/interfaces/config"
+ "github.com/spiral/roadrunner/v2/interfaces/config"
"github.com/spiral/roadrunner/v2/interfaces/events"
"github.com/spiral/roadrunner/v2/interfaces/log"
"github.com/spiral/roadrunner/v2/interfaces/pool"
@@ -49,7 +49,7 @@ type middleware map[string]Middleware
type Plugin struct {
sync.Mutex
- configurer config2.Configurer
+ configurer config.Configurer
server server.Server
log log.Logger
@@ -80,7 +80,7 @@ func (s *Plugin) AddListener(listener events.EventListener) {
// Init must return configure svc and return true if svc hasStatus enabled. Must return error in case of
// misconfiguration. Services must not be used without proper configuration pushed first.
-func (s *Plugin) Init(cfg config2.Configurer, log log.Logger, server server.Server) error {
+func (s *Plugin) Init(cfg config.Configurer, log log.Logger, server server.Server) error {
const op = errors.Op("http Init")
err := cfg.UnmarshalKey(PluginName, &s.cfg)
if err != nil {
diff --git a/plugins/http/tests/plugin1.go b/plugins/http/tests/plugin1.go
index 7d1f32a1..7e5c03da 100644
--- a/plugins/http/tests/plugin1.go
+++ b/plugins/http/tests/plugin1.go
@@ -1,14 +1,14 @@
package tests
import (
- config2 "github.com/spiral/roadrunner/v2/interfaces/config"
+ "github.com/spiral/roadrunner/v2/interfaces/config"
)
type Plugin1 struct {
- config config2.Configurer
+ config config.Configurer
}
-func (p1 *Plugin1) Init(cfg config2.Configurer) error {
+func (p1 *Plugin1) Init(cfg config.Configurer) error {
p1.config = cfg
return nil
}
diff --git a/plugins/http/tests/plugin_middleware.go b/plugins/http/tests/plugin_middleware.go
index 224d4117..9003c0ad 100644
--- a/plugins/http/tests/plugin_middleware.go
+++ b/plugins/http/tests/plugin_middleware.go
@@ -3,14 +3,14 @@ package tests
import (
"net/http"
- config2 "github.com/spiral/roadrunner/v2/interfaces/config"
+ "github.com/spiral/roadrunner/v2/interfaces/config"
)
type PluginMiddleware struct {
- config config2.Configurer
+ config config.Configurer
}
-func (p *PluginMiddleware) Init(cfg config2.Configurer) error {
+func (p *PluginMiddleware) Init(cfg config.Configurer) error {
p.config = cfg
return nil
}
@@ -34,10 +34,10 @@ func (p *PluginMiddleware) Name() string {
}
type PluginMiddleware2 struct {
- config config2.Configurer
+ config config.Configurer
}
-func (p *PluginMiddleware2) Init(cfg config2.Configurer) error {
+func (p *PluginMiddleware2) Init(cfg config.Configurer) error {
p.config = cfg
return nil
}