(name string, aR applications.Repository)
| 19 | } |
| 20 | |
| 21 | func NewApplicationRequirement(name string, aR applications.Repository) *applicationAPIRequirement { |
| 22 | req := &applicationAPIRequirement{} |
| 23 | req.name = name |
| 24 | req.appRepo = aR |
| 25 | return req |
| 26 | } |
| 27 | |
| 28 | func (req *applicationAPIRequirement) Execute() error { |
| 29 | var apiErr error |
no outgoing calls
no test coverage detected