(username string, wantGUID bool)
| 100 | } |
| 101 | |
| 102 | func (f apiRequirementFactory) NewUserRequirement(username string, wantGUID bool) UserRequirement { |
| 103 | return NewUserRequirement( |
| 104 | username, |
| 105 | f.repoLocator.GetUserRepository(), |
| 106 | wantGUID, |
| 107 | ) |
| 108 | } |
| 109 | |
| 110 | func (f apiRequirementFactory) NewClientRequirement(username string) UserRequirement { |
| 111 | return NewClientRequirement( |
nothing calls this directly
no test coverage detected