Tissue service will sanitize the existign database of ingested torrents by matching existing titles with new banned word lists. Now with added kleenex
8 lines
304 B
C#
8 lines
304 B
C#
namespace Tissue.Features.DataProcessing;
|
|
|
|
public interface IDataStorage
|
|
{
|
|
Task<IReadOnlyCollection<Torrent>?> GetAllTorrents(CancellationToken cancellationToken = default);
|
|
Task DeleteTorrentsByInfoHashes(IReadOnlyCollection<string> infoHashes, CancellationToken cancellationToken = default);
|
|
}
|