Files
parr_api/PARR.NextRun/INextRunRabbitService.cs

9 lines
138 B
C#

namespace PARR.NextRun
{
public interface INextRunRabbitService
{
Task StartAsync();
Task StopAsync();
}
}