aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/plugins/namespace/plugin.go
diff options
context:
space:
mode:
authorBin Yang <bin.yang@windriver.com>2019-08-05 07:20:02 +0000
committerGerrit Code Review <gerrit@onap.org>2019-08-05 07:20:02 +0000
commitd18501a4c4b15ee99e600ec6a5385616021812b4 (patch)
treec5e2c8c9619a38b3d0e2f03df04771b5b15c0345 /src/k8splugin/plugins/namespace/plugin.go
parent7c4eb36248331166a6fc3e57fb304a8113edc175 (diff)
parentc9c8b012a027e7ff234ac3440620303374464665 (diff)
Merge "Add static compile time check to plugins"
Diffstat (limited to 'src/k8splugin/plugins/namespace/plugin.go')
-rw-r--r--src/k8splugin/plugins/namespace/plugin.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/k8splugin/plugins/namespace/plugin.go b/src/k8splugin/plugins/namespace/plugin.go
index d30f55b8..feb2aa61 100644
--- a/src/k8splugin/plugins/namespace/plugin.go
+++ b/src/k8splugin/plugins/namespace/plugin.go
@@ -26,6 +26,9 @@ import (
"github.com/onap/multicloud-k8s/src/k8splugin/internal/plugin"
)
+// Compile time check to see if namespacePlugin implements the correct interface
+var _ plugin.Reference = namespacePlugin{}
+
// ExportedVariable is what we will look for when calling the plugin
var ExportedVariable namespacePlugin