jsoniter.go 247 B

123456789101112
  1. // +build jsoniter
  2. package restful
  3. import "github.com/json-iterator/go"
  4. var (
  5. json = jsoniter.ConfigCompatibleWithStandardLibrary
  6. MarshalIndent = json.MarshalIndent
  7. NewDecoder = json.NewDecoder
  8. NewEncoder = json.NewEncoder
  9. )