blob: 11b8f8ae7f17ec7769ca064022cd72fcfb4ec916 [file] [log] [blame]
Matthias Andreas Benkard832a54e2019-01-29 09:27:38 +01001// +build jsoniter
2
3package restful
4
5import "github.com/json-iterator/go"
6
7var (
8 json = jsoniter.ConfigCompatibleWithStandardLibrary
9 MarshalIndent = json.MarshalIndent
10 NewDecoder = json.NewDecoder
11 NewEncoder = json.NewEncoder
12)