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 93741c79..57b1a4fa 100644 --- a/container/plugins.go +++ b/container/plugins.go @@ -14,6 +14,7 @@ import ( "github.com/roadrunner-server/informer/v4" "github.com/roadrunner-server/jobs/v4" "github.com/roadrunner-server/kv/v4" + "github.com/roadrunner-server/lock/v4" "github.com/roadrunner-server/logger/v4" "github.com/roadrunner-server/memcached/v4" "github.com/roadrunner-server/memory/v4" @@ -44,7 +45,8 @@ func Plugins() []any { //nolint:funlen &informer.Plugin{}, // resetter plugin (./rr reset) &resetter.Plugin{}, - + // mutexes(locks) + &lock.Plugin{}, // logger plugin &logger.Plugin{}, // psr-3 logger extension |