(clientID string, clientRepo api.ClientRepository)
| 23 | } |
| 24 | |
| 25 | func NewClientRequirement(clientID string, clientRepo api.ClientRepository) *userAPIRequirement { |
| 26 | req := new(userAPIRequirement) |
| 27 | req.clientID = clientID |
| 28 | req.clientRepo = clientRepo |
| 29 | return req |
| 30 | } |
| 31 | |
| 32 | func NewUserRequirement( |
| 33 | username string, |
no outgoing calls
no test coverage detected