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

8 lines
171 B
C#
Raw Normal View History

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