mirror of
https://github.com/ysoftdevs/gardener-extension-shoot-fleet-agent.git
synced 2026-03-25 02:21:34 +01:00
12 lines
172 B
Go
12 lines
172 B
Go
// +build !jsoniter
|
|
|
|
package restful
|
|
|
|
import "encoding/json"
|
|
|
|
var (
|
|
MarshalIndent = json.MarshalIndent
|
|
NewDecoder = json.NewDecoder
|
|
NewEncoder = json.NewEncoder
|
|
)
|