Files
kubesphere/pkg/controller/network/testing/util.go
2019-07-31 10:31:31 +08:00

13 lines
231 B
Go

package testing
import (
"strings"
"k8s.io/apimachinery/pkg/util/yaml"
)
func StringToObject(data string, obj interface{}) error {
reader := strings.NewReader(data)
return yaml.NewYAMLOrJSONDecoder(reader, 10).Decode(obj)
}