1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-17 16:12:42 +08:00
Files
go-mixed/json/json.go
2022-08-03 17:30:15 +08:00

18 lines
286 B
Go

//go:build !jsoniter
// +build !jsoniter
package json
import "encoding/json"
func RegisterFuzzyDecoders() {
}
var (
Marshal = json.Marshal
Unmarshal = json.Unmarshal
MarshalIndent = json.MarshalIndent
NewDecoder = json.NewDecoder
NewEncoder = json.NewEncoder
)