(sb *strings.Builder, title string, count int)
| 371 | } |
| 372 | |
| 373 | func renderSection(sb *strings.Builder, title string, count int) { |
| 374 | header := fmt.Sprintf("%s (%d)", title, count) |
| 375 | sb.WriteString(tableHeaderStyle.Render(" " + header)) |
| 376 | sb.WriteString("\n") |
| 377 | } |
| 378 | |
| 379 | func renderProviderKeys(sb *strings.Builder, title string, keys []map[string]any) { |
| 380 | if len(keys) == 0 { |
no test coverage detected