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

10 lines
196 B
C#
Raw Normal View History

2025-01-16 21:57:50 +00:00
namespace BotSharp.Core.Crontab.Abstraction;
/// <summary>
/// Provide a cron source for the crontab service.
/// </summary>
public interface ICrontabSource
{
CrontabItem GetCrontabItem();
}