(configDict map[string]any)
| 283 | } |
| 284 | |
| 285 | func getServices(configDict map[string]any) map[string]any { |
| 286 | if services, ok := configDict["services"]; ok { |
| 287 | if servicesDict, ok := services.(map[string]any); ok { |
| 288 | return servicesDict |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | return map[string]any{} |
| 293 | } |
| 294 | |
| 295 | // Transform converts the source into the target struct with compose types transformer |
| 296 | // and the specified transformers if any. |
no outgoing calls
no test coverage detected
searching dependent graphs…