2017-07-19 00:01:29 +03:00
|
|
|
// Copyright 2017 Bo-Yi Wu. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-04-21 03:45:49 +03:00
|
|
|
//go:build !jsoniter && !go_json
|
|
|
|
// +build !jsoniter,!go_json
|
2017-07-19 00:01:29 +03:00
|
|
|
|
|
|
|
package json
|
|
|
|
|
2017-11-12 08:24:51 +03:00
|
|
|
import "encoding/json"
|
2017-07-19 00:01:29 +03:00
|
|
|
|
|
|
|
var (
|
2018-09-15 05:23:32 +03:00
|
|
|
// Marshal is exported by gin/json package.
|
|
|
|
Marshal = json.Marshal
|
2019-03-05 01:46:18 +03:00
|
|
|
// Unmarshal is exported by gin/json package.
|
|
|
|
Unmarshal = json.Unmarshal
|
2018-09-15 05:23:32 +03:00
|
|
|
// MarshalIndent is exported by gin/json package.
|
2017-07-19 00:01:29 +03:00
|
|
|
MarshalIndent = json.MarshalIndent
|
2018-09-15 05:23:32 +03:00
|
|
|
// NewDecoder is exported by gin/json package.
|
|
|
|
NewDecoder = json.NewDecoder
|
|
|
|
// NewEncoder is exported by gin/json package.
|
|
|
|
NewEncoder = json.NewEncoder
|
2017-07-19 00:01:29 +03:00
|
|
|
)
|