| 14 | } |
| 15 | |
| 16 | type domainAPIRequirement struct { |
| 17 | name string |
| 18 | config coreconfig.Reader |
| 19 | domainRepo api.DomainRepository |
| 20 | domain models.DomainFields |
| 21 | } |
| 22 | |
| 23 | func NewDomainRequirement(name string, config coreconfig.Reader, domainRepo api.DomainRepository) (req *domainAPIRequirement) { |
| 24 | req = new(domainAPIRequirement) |
nothing calls this directly
no outgoing calls
no test coverage detected