Split reswrangler.go and test from resmap.go

This commit is contained in:
jregan
2020-08-23 08:18:23 -07:00
7 changed files with 1495 additions and 1484 deletions

View File

@@ -1,13 +0,0 @@
// Copyright 2019 The Kubernetes Authors.
// SPDX-License-Identifier: Apache-2.0
package resmap
import "sigs.k8s.io/kustomize/api/resource"
// Merginator merges resources.
type Merginator interface {
// Merge creates a new ResMap by merging incoming resources.
// Error if conflict found.
Merge([]*resource.Resource) (ResMap, error)
}