| 13 | } |
| 14 | |
| 15 | type userAPIRequirement struct { |
| 16 | username string |
| 17 | userRepo api.UserRepository |
| 18 | clientRepo api.ClientRepository |
| 19 | wantGUID bool |
| 20 | clientID string |
| 21 | |
| 22 | user models.UserFields |
| 23 | } |
| 24 | |
| 25 | func NewClientRequirement(clientID string, clientRepo api.ClientRepository) *userAPIRequirement { |
| 26 | req := new(userAPIRequirement) |
nothing calls this directly
no outgoing calls
no test coverage detected