diff options
author | Bin Yang <bin.yang@windriver.com> | 2019-08-05 07:20:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-05 07:20:02 +0000 |
commit | d18501a4c4b15ee99e600ec6a5385616021812b4 (patch) | |
tree | c5e2c8c9619a38b3d0e2f03df04771b5b15c0345 /src/k8splugin/plugins/service/plugin.go | |
parent | 7c4eb36248331166a6fc3e57fb304a8113edc175 (diff) | |
parent | c9c8b012a027e7ff234ac3440620303374464665 (diff) |
Merge "Add static compile time check to plugins"
Diffstat (limited to 'src/k8splugin/plugins/service/plugin.go')
-rw-r--r-- | src/k8splugin/plugins/service/plugin.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/k8splugin/plugins/service/plugin.go b/src/k8splugin/plugins/service/plugin.go index 2fceffc0..136a1343 100644 --- a/src/k8splugin/plugins/service/plugin.go +++ b/src/k8splugin/plugins/service/plugin.go @@ -26,6 +26,9 @@ import ( "github.com/onap/multicloud-k8s/src/k8splugin/internal/plugin" ) +// Compile time check to see if servicePlugin implements the correct interface +var _ plugin.Reference = servicePlugin{} + // ExportedVariable is what we will look for when calling the plugin var ExportedVariable servicePlugin |