blob: 792863262e8408f3e5090a743cc9fcdcfcb4ed46 [file] [log] [blame]
Krishyab0cc1882025-06-09 10:54:09 +08001package com.example.myproject.service;
2
3import com.example.myproject.entity.TorrentEntity;
4
5import java.util.List;
6
7public interface PopularSeedService {
8 List<TorrentEntity> getPopularSeeds(int limit);
9 List<TorrentEntity> getRecommendedSeeds(Long userId); // 假设接口中是这个方法
10}