9 lines
170 B
Go
9 lines
170 B
Go
|
package misc
|
||
|
|
||
|
import json "github.com/json-iterator/go"
|
||
|
|
||
|
var (
|
||
|
// JSONCodec is a static JSON serializer and JSON deserializer handler.
|
||
|
JSONCodec = json.ConfigFastest
|
||
|
)
|