diff options
Diffstat (limited to 'container')
-rw-r--r-- | container/plugins.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/container/plugins.go b/container/plugins.go index dd2b7f0c..32967669 100644 --- a/container/plugins.go +++ b/container/plugins.go @@ -1,11 +1,11 @@ package container import ( + cache "github.com/darkweak/souin/plugins/roadrunner" "github.com/roadrunner-server/amqp/v2" "github.com/roadrunner-server/beanstalk/v2" "github.com/roadrunner-server/boltdb/v2" "github.com/roadrunner-server/broadcast/v2" - "github.com/roadrunner-server/cache/v2" "github.com/roadrunner-server/fileserver/v2" grpcPlugin "github.com/roadrunner-server/grpc/v2" "github.com/roadrunner-server/gzip/v2" @@ -13,6 +13,7 @@ import ( httpPlugin "github.com/roadrunner-server/http/v2" "github.com/roadrunner-server/informer/v2" "github.com/roadrunner-server/jobs/v2" + "github.com/roadrunner-server/kafka/v2" "github.com/roadrunner-server/logger/v2" "github.com/roadrunner-server/memory/v2" "github.com/roadrunner-server/metrics/v2" @@ -66,6 +67,7 @@ func Plugins() []interface{} { //nolint:funlen &sqs.Plugin{}, &nats.Plugin{}, &beanstalk.Plugin{}, + &kafka.Plugin{}, // ========= // http server plugin with middleware |