diff options
author | Valery Piashchynski <[email protected]> | 2024-07-25 14:00:30 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2024-07-25 14:00:30 +0200 |
commit | 1cfa4e166f872e2a7780b8afa55ee99a8ac8e984 (patch) | |
tree | f542a937d2c922b3b28a51748e80c8c0414064d0 /container | |
parent | 60761af30694544741b5b009cb8ff886180aa7cf (diff) |
release: v2024.2
Signed-off-by: Valery Piashchynski <[email protected]>
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 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 |