blob: 792863262e8408f3e5090a743cc9fcdcfcb4ed46 [file] [log] [blame]
package com.example.myproject.service;
import com.example.myproject.entity.TorrentEntity;
import java.util.List;
public interface PopularSeedService {
List<TorrentEntity> getPopularSeeds(int limit);
List<TorrentEntity> getRecommendedSeeds(Long userId); // 假设接口中是这个方法
}