You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
550 B

11 months ago
package mapping
// UnmarshalYamlBytes unmarshals content into v.
//func UnmarshalYamlBytes(content []byte, v any, opts ...UnmarshalOption) error {
// b, err := encoding.YamlToJson(content)
// if err != nil {
// return err
// }
//
// return UnmarshalJsonBytes(b, v, opts...)
//}
// UnmarshalYamlReader unmarshals content from reader into v.
//func UnmarshalYamlReader(reader io.Reader, v any, opts ...UnmarshalOption) error {
// b, err := io.ReadAll(reader)
// if err != nil {
// return err
// }
//
// return UnmarshalYamlBytes(b, v, opts...)
//}