move files to hrp

This commit is contained in:
debugtalk
2022-03-23 15:10:23 +08:00
parent f8113ea364
commit 8268aa0822
125 changed files with 0 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package json
import (
jsoniter "github.com/json-iterator/go"
)
// replace with third-party json library to improve performance
var json = jsoniter.ConfigCompatibleWithStandardLibrary
var (
Marshal = json.Marshal
MarshalIndent = json.MarshalIndent
Unmarshal = json.Unmarshal
NewDecoder = json.NewDecoder
Get = json.Get
)