mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
18 lines
286 B
Go
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
|
|
)
|