summaryrefslogtreecommitdiff
path: root/container
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2023-01-10 10:01:04 +0100
committerValery Piashchynski <[email protected]>2023-01-10 10:01:11 +0100
commit8714dd99e8f3b55aef0b552ad40ce496624f308e (patch)
treea2250cf40039fd35b7c875fbd718f85bf755d4b2 /container
parent4e59b15060285792bb746312096f4a84ddc41e21 (diff)
chore(deps): update dependencies
Diffstat (limited to 'container')
-rw-r--r--container/plugins.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/container/plugins.go b/container/plugins.go
index 22d90b7f..77d8ac7a 100644
--- a/container/plugins.go
+++ b/container/plugins.go
@@ -1,7 +1,6 @@
package container
import (
- cache "github.com/darkweak/souin/plugins/roadrunner"
"github.com/roadrunner-server/amqp/v3"
appLogger "github.com/roadrunner-server/app-logger/v3"
"github.com/roadrunner-server/beanstalk/v3"
@@ -35,7 +34,7 @@ import (
"github.com/roadrunner-server/static/v3"
"github.com/roadrunner-server/status/v3"
"github.com/roadrunner-server/tcp/v3"
- rrt "github.com/temporalio/roadrunner-temporal/v2"
+ rrt "github.com/temporalio/roadrunner-temporal/v3"
)
// Plugins returns active plugins for the endure container. Feel free to add or remove any plugins.
@@ -102,7 +101,5 @@ func Plugins() []any { //nolint:funlen
&tcp.Plugin{},
// temporal plugin
&rrt.Plugin{},
- // third-party--
- &cache.Plugin{},
}
}