Krishya | b0cc188 | 2025-06-09 10:54:09 +0800 | [diff] [blame] | 1 | package com.example.myproject.service; |
2 | |||||
3 | import com.example.myproject.entity.TorrentEntity; | ||||
4 | |||||
5 | import java.util.List; | ||||
6 | |||||
7 | public interface RecommendationService { | ||||
8 | List<TorrentEntity> getRecommendedSeeds(Long userId); | ||||
9 | } |