mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 02:55:22 +00:00
23 lines
398 B
Go
23 lines
398 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{}
|
|
|
|
//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
|
|
}
|