(messages []map[string]any)
| 82 | } |
| 83 | |
| 84 | func StripInternalElements(messages []map[string]any) []map[string]any { |
| 85 | return StripInternalElementsWithErrors(messages, nil) |
| 86 | } |
| 87 | |
| 88 | func StripInternalElementsWithErrors(messages []map[string]any, errorBlockMap map[string][]string) []map[string]any { |
| 89 | stripTypes := map[string]struct{}{} |
nothing calls this directly
no test coverage detected