package recommendation import "context" type RecommendationService interface { GetRecommendations(ctx context.Context, userID string) ([]string, error) }