github.com/cloudwego/hertz@v0.9.3/pkg/common/json/sonic.go (about) 1 // Copyright 2022 CloudWeGo Authors 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 // 15 16 //go:build (linux || windows || darwin) && amd64 && !stdjson 17 // +build linux windows darwin 18 // +build amd64 19 // +build !stdjson 20 21 package json 22 23 import "github.com/bytedance/sonic" 24 25 // Name is the name of the effective json package. 26 const Name = "sonic" 27 28 var ( 29 json = sonic.ConfigStd 30 // Marshal is sonic implementation exported by hertz which is used by rendering. 31 Marshal = json.Marshal 32 // Unmarshal is sonic implementation exported by hertz which is used by binding. 33 Unmarshal = json.Unmarshal 34 // MarshalIndent is sonic implementation exported by hertz. 35 MarshalIndent = json.MarshalIndent 36 // NewDecoder is sonic implementation exported by hertz. 37 NewDecoder = json.NewDecoder 38 // NewEncoder is sonic implementation exported by hertz. 39 NewEncoder = json.NewEncoder 40 )