summaryrefslogtreecommitdiff
path: root/plugins/checker/plugin.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-12-21 14:25:41 +0300
committerValery Piashchynski <[email protected]>2020-12-21 14:25:41 +0300
commit960395df42b379c55c095dbed2378bfe20869c83 (patch)
treeae85337454b5f68efe1eed10640ac2d837612d7c /plugins/checker/plugin.go
parent7b32b6b93576ec72b4b7fdf2068e655f869e9cf8 (diff)
Remove config2 alias
Diffstat (limited to 'plugins/checker/plugin.go')
-rw-r--r--plugins/checker/plugin.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/checker/plugin.go b/plugins/checker/plugin.go
index e3e7834a..7aea33b7 100644
--- a/plugins/checker/plugin.go
+++ b/plugins/checker/plugin.go
@@ -9,7 +9,7 @@ import (
"github.com/gofiber/fiber/v2/middleware/logger"
"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/log"
"github.com/spiral/roadrunner/v2/interfaces/status"
)
@@ -26,7 +26,7 @@ type Plugin struct {
cfg *Config
}
-func (c *Plugin) Init(log log.Logger, cfg config2.Configurer) error {
+func (c *Plugin) Init(log log.Logger, cfg config.Configurer) error {
const op = errors.Op("status plugin init")
err := cfg.UnmarshalKey(PluginName, &c.cfg)
if err != nil {