8 lines
157 B
Go
8 lines
157 B
Go
package recommendation
|
|
|
|
import "context"
|
|
|
|
type RecommendationService interface {
|
|
GetRecommendations(ctx context.Context, userID string) ([]string, error)
|
|
}
|