mirror of
https://github.com/C9Glax/tranga.git
synced 2025-10-11 13:19:48 +02:00
6 lines
190 B
C#
6 lines
190 B
C#
namespace API.MangaDownloadClients;
|
|
|
|
public interface IDownloadClient
|
|
{
|
|
internal Task<HttpResponseMessage> MakeRequest(string url, RequestType requestType, string? referrer = null);
|
|
} |