(ctx context.Context, username string)
| 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) |
| 61 | GetUserCount(ctx context.Context) (count int64, err error) |
no outgoing calls