rclone/fs/rc/rc_new.go
2018-03-14 22:58:20 +02:00

15 lines
226 B
Go

//+build go1.7
package rc
import (
"encoding/json"
"io"
)
// WriteJSON writes JSON in out to w
func WriteJSON(w io.Writer, out Params) error {
enc := json.NewEncoder(w)
enc.SetIndent("", "\t")
return enc.Encode(out)
}