mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-26 13:29:11 +01:00
12 lines
172 B
Go
Vendored
12 lines
172 B
Go
Vendored
// +build !jsoniter
|
|
|
|
package restful
|
|
|
|
import "encoding/json"
|
|
|
|
var (
|
|
MarshalIndent = json.MarshalIndent
|
|
NewDecoder = json.NewDecoder
|
|
NewEncoder = json.NewEncoder
|
|
)
|