move files into internal

This commit is contained in:
Donny Xia
2020-11-18 12:07:19 -08:00
parent 7e74271071
commit 2ae323bb26
12 changed files with 18 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
//nolint
package funcwrappersrc
import (
"sigs.k8s.io/kustomize/api/resmap"
)
type plugin struct{}
//noinspection GoUnusedGlobalVariable
var KustomizePlugin plugin
func (p *plugin) Config(
_ *resmap.PluginHelpers, _ []byte) (err error) {
return nil
}
func (p *plugin) Transform(_ resmap.ResMap) error {
return nil
}