mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
21 lines
386 B
Go
21 lines
386 B
Go
//go:build !go1.21 || without_contextjson
|
|
|
|
package json
|
|
|
|
import "encoding/json"
|
|
|
|
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
|
|
)
|