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.
|
|
|
|
|
|
|
|
// +build jsoniter
|
|
|
|
|
|
|
|
package json
|
|
|
|
|
2017-11-12 08:24:51 +03:00
|
|
|
import "github.com/json-iterator/go"
|
2017-07-19 00:01:29 +03:00
|
|
|
|
|
|
|
var (
|
|
|
|
json = jsoniter.ConfigCompatibleWithStandardLibrary
|
|
|
|
Marshal = json.Marshal
|
|
|
|
MarshalIndent = json.MarshalIndent
|
|
|
|
NewDecoder = json.NewDecoder
|
|
|
|
)
|