Files
buildx/vendor/github.com/emicklei/go-restful/v3/json.go
2023-03-14 18:44:13 +01:00

12 lines
172 B
Go

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