kilo/vendor/github.com/emicklei/go-restful/json.go

12 lines
172 B
Go

// +build !jsoniter
package restful
import "encoding/json"
var (
MarshalIndent = json.MarshalIndent
NewDecoder = json.NewDecoder
NewEncoder = json.NewEncoder
)