Files
Tranga/API/MangaDownloadClients/DownloadClient.cs
glax ed07bba841
Some checks failed
Docker Image CI / build (push) Has been cancelled
Use DelegatingHandler for RateLimits
2025-10-06 22:48:46 +02:00

6 lines
190 B
C#

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