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

8 lines
170 B
C#

using ScrapperAPI.Records;
namespace ScrapperAPI.Interfaces;
public interface IScrapeEventBus
{
Task PublishAsync(ScrapeEvent ev, CancellationToken ct = default);
}