OSDN Git Service

feat(warder): add warder backbone (#181)
[bytom/vapor.git] / vendor / github.com / gin-gonic / gin / json / json.go
diff --git a/vendor/github.com/gin-gonic/gin/json/json.go b/vendor/github.com/gin-gonic/gin/json/json.go
new file mode 100644 (file)
index 0000000..aa76aa3
--- /dev/null
@@ -0,0 +1,15 @@
+// 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
+
+import "encoding/json"
+
+var (
+       Marshal       = json.Marshal
+       MarshalIndent = json.MarshalIndent
+       NewDecoder    = json.NewDecoder
+)