blob: 4f78456a83d530a5ec827f94113c3cd787dce582 [file] [log] [blame]
package com.example.myproject.service;
import com.example.myproject.entity.TorrentEntity;
import java.util.List;
public interface RecommendationService {
List<TorrentEntity> getRecommendedSeeds(Long userId);
}