GetOmittedContainers returns full list of global and local omitted containers
()
| 616 | |
| 617 | // GetOmittedContainers returns full list of global and local omitted containers |
| 618 | func (app *DdevApp) GetOmittedContainers() []string { |
| 619 | omitted := app.OmitContainersGlobal |
| 620 | omitted = append(omitted, app.OmitContainers...) |
| 621 | return omitted |
| 622 | } |
| 623 | |
| 624 | // GetAppRoot return the full path from root to the app directory |
| 625 | func (app *DdevApp) GetAppRoot() string { |
no outgoing calls
no test coverage detected