json: use context json in go1.20

This commit is contained in:
世界 2023-12-05 14:53:34 +08:00
parent 51aeb14a87
commit d171f04941
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 24 additions and 1 deletions

View file

@ -0,0 +1,23 @@
//go:build !go1.21 && go1.20 && !without_contextjson
package json
import (
"github.com/sagernet/sing/common/json/internal/contextjson_120"
)
var (
Marshal = json.Marshal
Unmarshal = json.Unmarshal
NewEncoder = json.NewEncoder
NewDecoder = json.NewDecoder
)
type (
Encoder = json.Encoder
Decoder = json.Decoder
Token = json.Token
Delim = json.Delim
SyntaxError = json.SyntaxError
RawMessage = json.RawMessage
)

View file

@ -1,4 +1,4 @@
//go:build !go1.21 || without_contextjson
//go:build !go1.20 || without_contextjson
package json