(data []byte, v any)
| 26 | } |
| 27 | |
| 28 | func (j gojsonApi) Unmarshal(data []byte, v any) error { |
| 29 | return json.Unmarshal(data, v) |
| 30 | } |
| 31 | |
| 32 | func (j gojsonApi) MarshalIndent(v any, prefix, indent string) ([]byte, error) { |
| 33 | return json.MarshalIndent(v, prefix, indent) |