mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
json: use context json in go1.20
This commit is contained in:
parent
51aeb14a87
commit
d171f04941
2 changed files with 24 additions and 1 deletions
23
common/json/context_120.go
Normal file
23
common/json/context_120.go
Normal 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
|
||||
)
|
|
@ -1,4 +1,4 @@
|
|||
//go:build !go1.21 || without_contextjson
|
||||
//go:build !go1.20 || without_contextjson
|
||||
|
||||
package json
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue