mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
16 lines
415 B
Go
16 lines
415 B
Go
package user
|
|
|
|
import (
|
|
"context"
|
|
"tercul/internal/domain"
|
|
)
|
|
|
|
// UserRepository defines CRUD methods specific to User.
|
|
type UserRepository interface {
|
|
domain.BaseRepository[domain.User]
|
|
|
|
FindByUsername(ctx context.Context, username string) (*domain.User, error)
|
|
FindByEmail(ctx context.Context, email string) (*domain.User, error)
|
|
ListByRole(ctx context.Context, role domain.UserRole) ([]domain.User, error)
|
|
}
|