BotSharp/src/Infrastructure/BotSharp.Abstraction/Crontab/ICrontabService.cs
Jicheng Lu e35fbc7439 refine
2025-05-07 16:34:39 -05:00

8 lines
171 B
C#

namespace BotSharp.Abstraction.Crontab;
public interface ICrontabService
{
Task<List<CrontabItem>> GetCrontable();
Task ScheduledTimeArrived(CrontabItem item);
}