mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 09:00:20 +08:00
ae87114282
* chore: change interface{} to any * chore: update goctl version to 1.5.0 * chore: update goctl deps
28 lines
587 B
Go
28 lines
587 B
Go
package mapping
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/zeromicro/go-zero/internal/encoding"
|
|
)
|
|
|
|
// 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...)
|
|
}
|