Indent is documented at https://golang.org/pkg/encoding/json/#Indent
(dst *bytes.Buffer, src []byte, prefix, indent string)
| 265 | |
| 266 | // Indent is documented at https://golang.org/pkg/encoding/json/#Indent |
| 267 | func Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error { |
| 268 | return json.Indent(dst, src, prefix, indent) |
| 269 | } |
| 270 | |
| 271 | // Marshal is documented at https://golang.org/pkg/encoding/json/#Marshal |
| 272 | func Marshal(x any) ([]byte, error) { |
no outgoing calls
searching dependent graphs…