mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
13 lines
263 B
Go
13 lines
263 B
Go
//go:build !go1.20 || without_contextjson
|
|
|
|
package json
|
|
|
|
import (
|
|
"bytes"
|
|
)
|
|
|
|
func UnmarshalDisallowUnknownFields(content []byte, value any) error {
|
|
decoder := NewDecoder(bytes.NewReader(content))
|
|
decoder.DisallowUnknownFields()
|
|
return decoder.Decode(value)
|
|
}
|