Files
Tranga/API/MangaDownloadClients/DownloadClient.cs
glax 3ff44339b5
Some checks are pending
Docker Image CI / build (push) Waiting to run
Fix #468 failed downloads (Task cancelled) results in empty chapter archive
2025-10-10 18:23:27 +02:00

7 lines
243 B
C#

namespace API.MangaDownloadClients;
public interface IDownloadClient
{
internal Task<HttpResponseMessage> MakeRequest(string url, RequestType requestType, string? referrer = null,
CancellationToken? cancellationToken = null);
}