summaryrefslogtreecommitdiff
path: root/plugins/informer/interface.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-04-29 19:26:35 +0300
committerValery Piashchynski <[email protected]>2021-04-29 19:26:35 +0300
commitaf707e7d4d7a8fad98872e2a902e056155ad9591 (patch)
tree8f5ad1f1be443281213c4fccc1e77ca43a749f05 /plugins/informer/interface.go
parent7297e5f2fad841466024f8622da3e14b7874f989 (diff)
- Add new interface to obtain all plugins
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/informer/interface.go')
-rw-r--r--plugins/informer/interface.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/informer/interface.go b/plugins/informer/interface.go
index 45f44691..cd8ab232 100644
--- a/plugins/informer/interface.go
+++ b/plugins/informer/interface.go
@@ -8,3 +8,9 @@ import (
type Informer interface {
Workers() []process.State
}
+
+// Lister interface used to filter available plugins
+type Lister interface {
+ // List gets no args, but returns list of the active plugins
+ List() []string
+}