@ -0,0 +1,14 @@
package main
import (
"bytes"
"encoding/json"
)
func formatJson(v interface{}) []byte {
marshal, _ := json.Marshal(v)
var b bytes.Buffer
json.Indent(&b, marshal, "", " ")
return b.Bytes()
}
The note is not visible to the blocked user.