upda/util/json.go
2024-04-21 11:27:43 +02:00

8 lines
200 B
Go

package util
import "encoding/json"
// UnmarshalGenericJSON unmarshal JSON into given generic type T
func UnmarshalGenericJSON[T any](b []byte) (v T, err error) {
return v, json.Unmarshal(b, &v)
}