OSDN Git Service

feat(warder): add warder backbone (#181)
[bytom/vapor.git] / vendor / github.com / gin-gonic / gin / json / json.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 "encoding/json"
10
11 var (
12         Marshal       = json.Marshal
13         MarshalIndent = json.MarshalIndent
14         NewDecoder    = json.NewDecoder
15 )