mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 04:45:03 +00:00
22 lines
386 B
Go
22 lines
386 B
Go
// Copyright 2022 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package funcwrappersrc
|
|
|
|
import (
|
|
"sigs.k8s.io/kustomize/api/resmap"
|
|
)
|
|
|
|
type plugin struct{}
|
|
|
|
var KustomizePlugin plugin //nolint:gochecknoglobals
|
|
|
|
func (p *plugin) Config(
|
|
_ *resmap.PluginHelpers, _ []byte) (err error) {
|
|
return nil
|
|
}
|
|
|
|
func (p *plugin) Transform(_ resmap.ResMap) error {
|
|
return nil
|
|
}
|