Code refactoring for bpa operator
[icn.git] / cmd / bpa-operator / vendor / github.com / emicklei / go-restful / jsoniter.go
1 // +build jsoniter
2
3 package restful
4
5 import "github.com/json-iterator/go"
6
7 var (
8         json          = jsoniter.ConfigCompatibleWithStandardLibrary
9         MarshalIndent = json.MarshalIndent
10         NewDecoder    = json.NewDecoder
11         NewEncoder    = json.NewEncoder
12 )