diff options
author | Valery Piashchynski <[email protected]> | 2022-08-22 12:21:48 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-08-22 12:21:48 +0200 |
commit | 5c6cb57cb5eb1dad83c907d6f94536dc626e64d5 (patch) | |
tree | 9be735c2222e35a21947c92a040449e486f39252 /container/plugins.go | |
parent | 6a57268eafbc1407e4b242d0458a6df659c523d1 (diff) |
feat: interface{} -> any{}
Signed-off-by: Valery Piashchynski <[email protected]>
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{}, |