GetUserByEmail to get user information from database using email address
(ctx context.Context, email string)
| 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 |
| 39 | GetUserByPhoneNumber(ctx context.Context, phoneNumber string) (*schemas.User, error) |
| 40 | // GetUserByID to get user information from database using user ID |
no outgoing calls