Bump helm.sh/helm/v3 from 3.10.3 to 3.11.1 (#5528)
This commit is contained in:
14
vendor/github.com/spf13/viper/internal/encoding/yaml/yaml2.go
generated
vendored
Normal file
14
vendor/github.com/spf13/viper/internal/encoding/yaml/yaml2.go
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
//go:build viper_yaml2
|
||||
// +build viper_yaml2
|
||||
|
||||
package yaml
|
||||
|
||||
import yamlv2 "gopkg.in/yaml.v2"
|
||||
|
||||
var yaml = struct {
|
||||
Marshal func(in interface{}) (out []byte, err error)
|
||||
Unmarshal func(in []byte, out interface{}) (err error)
|
||||
}{
|
||||
Marshal: yamlv2.Marshal,
|
||||
Unmarshal: yamlv2.Unmarshal,
|
||||
}
|
||||
Reference in New Issue
Block a user