go-jsonpp/prettyprint.go

10 lines
112 B
Go
Raw Permalink Normal View History

2023-09-27 04:45:47 +00:00
package jsonpp
import (
"os"
)
func PrettyPrint(json []byte) error {
return FPrettyPrint(os.Stdout, json)
}