(v any)
| 29 | } |
| 30 | |
| 31 | func MustPrettyPrintJSON(v any) string { |
| 32 | str, _ := MarshalIndentNoHTMLString(v, "", " ") |
| 33 | return str |
| 34 | } |
| 35 | |
| 36 | func ReUnmarshal(out any, in any) error { |
| 37 | barr, err := json.Marshal(in) |
nothing calls this directly
no test coverage detected