ListUsers to get list of users from database
(ctx context.Context, pagination *model.Pagination)
| 33 | DeleteUser(ctx context.Context, user *schemas.User) error |
| 34 | // ListUsers to get list of users from database |
| 35 | ListUsers(ctx context.Context, pagination *model.Pagination) ([]*schemas.User, *model.Pagination, error) |
| 36 | // GetUserByEmail to get user information from database using email address |
| 37 | GetUserByEmail(ctx context.Context, email string) (*schemas.User, error) |
| 38 | // GetUserByPhoneNumber to get user information from database using phone number |
no outgoing calls