2022-05-28 10:42:28 +08:00
|
|
|
// Copyright 2017 Bo-Yi Wu. All rights reserved.
|
2017-07-18 16:01:29 -05:00
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-03-27 09:09:44 +08:00
|
|
|
//go:build jsoniter
|
2017-07-18 16:01:29 -05:00
|
|
|
|
|
|
|
package json
|
|
|
|
|
2020-05-05 13:55:57 +08:00
|
|
|
import jsoniter "github.com/json-iterator/go"
|
2017-07-18 16:01:29 -05:00
|
|
|
|
|
|
|
var (
|
2018-09-15 10:23:32 +08:00
|
|
|
json = jsoniter.ConfigCompatibleWithStandardLibrary
|
|
|
|
// Marshal is exported by gin/json package.
|
|
|
|
Marshal = json.Marshal
|
2019-03-05 06:46:18 +08:00
|
|
|
// Unmarshal is exported by gin/json package.
|
|
|
|
Unmarshal = json.Unmarshal
|
2018-09-15 10:23:32 +08:00
|
|
|
// MarshalIndent is exported by gin/json package.
|
2017-07-18 16:01:29 -05:00
|
|
|
MarshalIndent = json.MarshalIndent
|
2018-09-15 10:23:32 +08:00
|
|
|
// NewDecoder is exported by gin/json package.
|
|
|
|
NewDecoder = json.NewDecoder
|
|
|
|
// NewEncoder is exported by gin/json package.
|
|
|
|
NewEncoder = json.NewEncoder
|
2017-07-18 16:01:29 -05:00
|
|
|
)
|