mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-09 09:47:15 -04:00
* refactored code added deluge support added transmission support added content blocker added blacklist and whitelist * increased level on some logs; updated test docker compose; updated dev appsettings * updated docker compose and readme * moved some logs * fixed env var typo; fixed sonarr and radarr default download client
10 lines
258 B
C#
10 lines
258 B
C#
namespace Infrastructure.Verticals.DownloadClient;
|
|
|
|
public interface IDownloadService : IDisposable
|
|
{
|
|
public Task LoginAsync();
|
|
|
|
public Task<bool> ShouldRemoveFromArrQueueAsync(string hash);
|
|
|
|
public Task BlockUnwantedFilesAsync(string hash);
|
|
} |