mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
14 lines
306 B
Go
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)
|
|
}
|