(ctx context.Context, ids []string)
| 55 | UpdateUserProfile(ctx context.Context, userInfo *entity.User) (err error) |
| 56 | GetByUserID(ctx context.Context, userID string) (userInfo *entity.User, exist bool, err error) |
| 57 | BatchGetByID(ctx context.Context, ids []string) ([]*entity.User, error) |
| 58 | GetByUsername(ctx context.Context, username string) (userInfo *entity.User, exist bool, err error) |
| 59 | GetByUsernames(ctx context.Context, usernames []string) ([]*entity.User, error) |
| 60 | GetByEmail(ctx context.Context, email string) (userInfo *entity.User, exist bool, err error) |
no outgoing calls