(name string)
| 92 | } |
| 93 | |
| 94 | func (f apiRequirementFactory) NewDomainRequirement(name string) DomainRequirement { |
| 95 | return NewDomainRequirement( |
| 96 | name, |
| 97 | f.config, |
| 98 | f.repoLocator.GetDomainRepository(), |
| 99 | ) |
| 100 | } |
| 101 | |
| 102 | func (f apiRequirementFactory) NewUserRequirement(username string, wantGUID bool) UserRequirement { |
| 103 | return NewUserRequirement( |
nothing calls this directly
no test coverage detected