diff options
Diffstat (limited to 'container/plugins.go')
-rw-r--r-- | container/plugins.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/container/plugins.go b/container/plugins.go index f8c0b4b0..82225b6b 100644 --- a/container/plugins.go +++ b/container/plugins.go @@ -40,8 +40,8 @@ import ( ) // Plugins returns active plugins for the endure container. Feel free to add or remove any plugins. -func Plugins() []interface{} { //nolint:funlen - return []interface{}{ +func Plugins() []any { //nolint:funlen + return []any{ // bundled // informer plugin (./rr workers, ./rr workers -i) &informer.Plugin{}, |