(name string, config coreconfig.Reader, domainRepo api.DomainRepository)
| 21 | } |
| 22 | |
| 23 | func NewDomainRequirement(name string, config coreconfig.Reader, domainRepo api.DomainRepository) (req *domainAPIRequirement) { |
| 24 | req = new(domainAPIRequirement) |
| 25 | req.name = name |
| 26 | req.config = config |
| 27 | req.domainRepo = domainRepo |
| 28 | return |
| 29 | } |
| 30 | |
| 31 | func (req *domainAPIRequirement) Execute() error { |
| 32 | var apiErr error |
no outgoing calls
no test coverage detected