Yimaru-BackEnd/internal/services/recommendation/port.go

8 lines
157 B
Go

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