(entries []config.Entry)
| 167 | } |
| 168 | |
| 169 | func entriesToMap(entries []config.Entry) map[string]string { |
| 170 | values := make(map[string]string, len(entries)) |
| 171 | |
| 172 | for _, entry := range entries { |
| 173 | values[entry.Key] = entry.Value |
| 174 | } |
| 175 | |
| 176 | return values |
| 177 | } |
no outgoing calls
no test coverage detected