mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
d300da19b7
Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
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
|
|
)
|