mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 04:25:31 +00:00
10 lines
261 B
Go
10 lines
261 B
Go
// Copyright 2022 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package types
|
|
|
|
type ReplacementField struct {
|
|
Replacement `json:",inline,omitempty" yaml:",inline,omitempty"`
|
|
Path string `json:"path,omitempty" yaml:"path,omitempty"`
|
|
}
|