(data []byte, v any)
| 6 | ) |
| 7 | |
| 8 | func Unmarshal(data []byte, v any) error { |
| 9 | return json.Unmarshal(data, v) |
| 10 | } |
| 11 | |
| 12 | func UnmarshalJsonStr(data string, v any) error { |
| 13 | return json.Unmarshal(StringToByteSlice(data), v) |
no outgoing calls
no test coverage detected