10 lines
112 B
Go
10 lines
112 B
Go
|
package jsonpp
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func PrettyPrint(json []byte) error {
|
||
|
return FPrettyPrint(os.Stdout, json)
|
||
|
}
|