plugins/* stub-out GET functions so plugins build with v0.7

This commit is contained in:
Casey Callendrello
2018-06-15 14:09:17 +02:00
parent e4fdb6cd18
commit 68b4efb405
18 changed files with 117 additions and 21 deletions

View File

@ -20,9 +20,9 @@ import (
)
func ExecAdd(plugin string, netconf []byte) (types.Result, error) {
return invoke.DelegateAdd(plugin, netconf)
return invoke.DelegateAdd(plugin, netconf, nil)
}
func ExecDel(plugin string, netconf []byte) error {
return invoke.DelegateDel(plugin, netconf)
return invoke.DelegateDel(plugin, netconf, nil)
}