【Gin-v1.9.0源码阅读】internal/json/jsoniter.go

// 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.

//go:build jsoniter
// +build jsoniter

package json

import jsoniter "github.com/json-iterator/go"

var (
	json = jsoniter.ConfigCompatibleWithStandardLibrary
	// Marshal is exported by gin/json package.
	// Marshal是通过gin/json包导出的。
	Marshal = json.Marshal
	// Unmarshal is exported by gin/json package.
	// Unmarshal是通过gin/json包导出的。
	Unmarshal = json.Unmarshal
	// MarshalIndent is exported by gin/json package.
	// MarshalIndent是通过gin/json包导出的。
	MarshalIndent = json.MarshalIndent
	// NewDecoder is exported by gin/json package.
	// NewDecoder是通过gin/json包导出的。
	NewDecoder = json.NewDecoder
	// NewEncoder is exported by gin/json package.
	// NewEncoder是通过gin/json包导出的
	NewEncoder = json.NewEncoder
)

猜你喜欢

转载自blog.csdn.net/qq2942713658/article/details/131029444
今日推荐