mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 11:38:11 +00:00
11 lines
172 B
Go
11 lines
172 B
Go
// +build !jsoniter
|
|
|
|
package restful
|
|
|
|
import "encoding/json"
|
|
|
|
var (
|
|
MarshalIndent = json.MarshalIndent
|
|
NewDecoder = json.NewDecoder
|
|
NewEncoder = json.NewEncoder
|
|
)
|