mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 11:38:11 +00:00
12 lines
247 B
Go
12 lines
247 B
Go
// +build jsoniter
|
|
|
|
package restful
|
|
|
|
import "github.com/json-iterator/go"
|
|
|
|
var (
|
|
json = jsoniter.ConfigCompatibleWithStandardLibrary
|
|
MarshalIndent = json.MarshalIndent
|
|
NewDecoder = json.NewDecoder
|
|
NewEncoder = json.NewEncoder
|
|
)
|