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

// Copyright 2022 Gin Core Team. 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 sonic && avx && (linux || windows || darwin) && amd64
// +build sonic
// +build avx
// +build linux windows darwin
// +build amd64

package json

import "github.com/bytedance/sonic"

var (
	json = sonic.ConfigStd
	// 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/131029457