revert: remove torrent streaming feature

This commit is contained in:
2026-04-07 13:48:37 +02:00
parent 81e5050732
commit aa5a99eec7
28 changed files with 294 additions and 3937 deletions

View File

@@ -51,15 +51,3 @@ func (s *Service) GetAnimeDetails(ctx context.Context, id int, userID string) (j
func (s *Service) GetRelations(id int) []jikan.RelationEntry {
return s.jikanClient.GetFullRelations(id)
}
func (s *Service) GetEpisodes(id int, page int) (jikan.EpisodesResult, error) {
return s.jikanClient.GetEpisodes(id, page)
}
func (s *Service) GetAllEpisodes(id int) ([]jikan.Episode, error) {
return s.jikanClient.GetAllEpisodes(id)
}
func (s *Service) GetAnime(id int) (jikan.Anime, error) {
return s.jikanClient.GetAnimeByID(id)
}