mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00: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
|
||
|
)
|