6 lines
150 B
C#
6 lines
150 B
C#
namespace ScrapperAPI.Interfaces;
|
|
|
|
public interface IScraperHttpClient
|
|
{
|
|
Task<string> GetStringWithRetryAsync(string url, CancellationToken ct);
|
|
} |