BotSharp/src/Infrastructure/BotSharp.Core.Crontab/Abstraction/ICrontabService.cs

8 lines
176 B
C#
Raw Normal View History

2024-12-03 22:52:14 +00:00
namespace BotSharp.Core.Crontab.Abstraction;
public interface ICrontabService
{
Task<List<CrontabItem>> GetCrontable();
Task ScheduledTimeArrived(CrontabItem item);
}