...

Source file src/sigs.k8s.io/kustomize/api/types/pair.go

Documentation: sigs.k8s.io/kustomize/api/types

     1  // Copyright 2019 The Kubernetes Authors.
     2  // SPDX-License-Identifier: Apache-2.0
     3  
     4  package types
     5  
     6  // Pair is a key value pair.
     7  type Pair struct {
     8  	Key   string
     9  	Value string
    10  }
    11  

View as plain text