mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
15 lines
262 B
Go
15 lines
262 B
Go
package json
|
|
|
|
import (
|
|
jsoniter "github.com/json-iterator/go"
|
|
)
|
|
|
|
var json = jsoniter.ConfigCompatibleWithStandardLibrary
|
|
|
|
var (
|
|
Marshal = json.Marshal
|
|
MarshalIndent = json.MarshalIndent
|
|
Unmarshal = json.Unmarshal
|
|
NewDecoder = json.NewDecoder
|
|
)
|