mirror of
https://github.com/C9Glax/tranga.git
synced 2025-10-11 05:09:49 +02:00
7 lines
243 B
C#
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);
|
|
} |