Migrate json wrapper and badjson to library

This commit is contained in:
世界 2023-12-05 14:26:35 +08:00
parent ba13aad0e5
commit d962a01bf7
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
8 changed files with 509 additions and 0 deletions

21
common/json/std.go Normal file
View file

@ -0,0 +1,21 @@
//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
)