diff options
Diffstat (limited to 'container/plugins.go')
-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 f2598bf0..c8159c99 100644 --- a/container/plugins.go +++ b/container/plugins.go @@ -7,6 +7,7 @@ import ( "github.com/roadrunner-server/boltdb/v5" "github.com/roadrunner-server/centrifuge/v5" "github.com/roadrunner-server/fileserver/v5" + gps "github.com/roadrunner-server/google-pub-sub/v5" grpcPlugin "github.com/roadrunner-server/grpc/v5" "github.com/roadrunner-server/gzip/v5" "github.com/roadrunner-server/headers/v5" @@ -37,7 +38,7 @@ import ( rrt "github.com/temporalio/roadrunner-temporal/v5" ) -// Plugins returns active plugins for the endured container. Feel free to add or remove any plugins. +// Plugins return active plugins for the endured container. Feel free to add or remove any plugins. func Plugins() []any { //nolint:funlen return []any{ // bundled @@ -69,6 +70,7 @@ func Plugins() []any { //nolint:funlen &nats.Plugin{}, &kafka.Plugin{}, &beanstalk.Plugin{}, + &gps.Plugin{}, // ========= // // http server plugin with middleware |