tercul-backend/internal/domain/user_profile/repo.go
2025-09-05 21:37:42 +00:00

14 lines
306 B
Go

package user_profile
import (
"context"
"tercul/internal/domain"
)
// User_profileRepository defines CRUD methods specific to User_profile.
type User_profileRepository interface {
domain.BaseRepository[domain.UserProfile]
GetByUserID(ctx context.Context, userID uint) (*domain.UserProfile, error)
}