(apps []dashboard.Application, appID string)
| 338 | } |
| 339 | |
| 340 | func applicationInAccount(apps []dashboard.Application, appID string) bool { |
| 341 | for _, app := range apps { |
| 342 | if app.ID == appID { |
| 343 | return true |
| 344 | } |
| 345 | } |
| 346 | return false |
| 347 | } |
| 348 | |
| 349 | func (opts *OpenOptions) fetchAccountApplications( |
| 350 | client *dashboard.Client, |
no outgoing calls
no test coverage detected