mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
15 lines
252 B
Go
15 lines
252 B
Go
//go:build !jsoniter
|
|
// +build !jsoniter
|
|
|
|
package json
|
|
|
|
import "encoding/json"
|
|
|
|
var (
|
|
Marshal = json.Marshal
|
|
Unmarshal = json.Unmarshal
|
|
MarshalIndent = json.MarshalIndent
|
|
NewDecoder = json.NewDecoder
|
|
NewEncoder = json.NewEncoder
|
|
)
|