(config map[string]any, key string)
| 208 | } |
| 209 | |
| 210 | func getSection(config map[string]any, key string) map[string]any { |
| 211 | section, ok := config[key] |
| 212 | if !ok { |
| 213 | return make(map[string]any) |
| 214 | } |
| 215 | return section.(map[string]any) |
| 216 | } |
| 217 | |
| 218 | // GetUnsupportedProperties returns the list of any unsupported properties that are |
| 219 | // used in the Compose files. |
no outgoing calls
no test coverage detected
searching dependent graphs…