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

6 lines
129 B
C#

namespace ScrapperAPI.Interfaces;
public interface IDomainRateLimiter
{
Task WaitAsync(string host, CancellationToken ct);
}