summaryrefslogtreecommitdiff
path: root/container
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-10-27 14:34:57 +0200
committerValery Piashchynski <[email protected]>2022-10-27 14:34:57 +0200
commit7341768f09abe19f570e785bb1c70d8afb72dbc3 (patch)
treef9a137ab32d2afcb80b5b62232ecf4ffce3940c0 /container
parent3e7be12359d6aa37163e278b0c756e0883d0ebdf (diff)
feat: add new plugin: centrifugo
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'container')
-rw-r--r--container/plugins.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/container/plugins.go b/container/plugins.go
index 188ce073..774669ba 100644
--- a/container/plugins.go
+++ b/container/plugins.go
@@ -5,6 +5,7 @@ import (
"github.com/roadrunner-server/amqp/v3"
"github.com/roadrunner-server/beanstalk/v3"
"github.com/roadrunner-server/boltdb/v3"
+ "github.com/roadrunner-server/centrifuge/v3"
"github.com/roadrunner-server/fileserver/v3"
grpcPlugin "github.com/roadrunner-server/grpc/v3"
"github.com/roadrunner-server/gzip/v3"
@@ -57,6 +58,8 @@ func Plugins() []any { //nolint:funlen
&server.Plugin{},
// service plugin
&service.Plugin{},
+ // centrifuge
+ &centrifuge.Plugin{},
//
// ========= JOBS bundle
&jobs.Plugin{},