1
0
voyager-api/ScrapperAPI/Interfaces/IScraperHttpClient.cs

6 lines
150 B
C#

namespace ScrapperAPI.Interfaces;
public interface IScraperHttpClient
{
Task<string> GetStringWithRetryAsync(string url, CancellationToken ct);
}