OSDN Git Service

feat(warder): add warder backbone (#181)
[bytom/vapor.git] / vendor / github.com / gin-gonic / gin / json / jsoniter.go
1 // Copyright 2017 Bo-Yi Wu.  All rights reserved.
2 // Use of this source code is governed by a MIT style
3 // license that can be found in the LICENSE file.
4
5 // +build jsoniter
6
7 package json
8
9 import "github.com/json-iterator/go"
10
11 var (
12         json          = jsoniter.ConfigCompatibleWithStandardLibrary
13         Marshal       = json.Marshal
14         MarshalIndent = json.MarshalIndent
15         NewDecoder    = json.NewDecoder
16 )