(groupPath []int, chartIndex int)
| 427 | } |
| 428 | |
| 429 | func buildTemplateID(groupPath []int, chartIndex int) string { |
| 430 | return fmt.Sprintf("g%s.c%d", pathIndexes(groupPath), chartIndex) |
| 431 | } |
| 432 | |
| 433 | func pathIndexes(path []int) string { |
| 434 | if len(path) == 0 { |
no test coverage detected
searching dependent graphs…