BotSharp/src/Infrastructure/BotSharp.Abstraction/Infrastructures/Events/IEventSubscriber.cs
2024-11-23 14:48:22 +00:00

9 lines
287 B
C#

namespace BotSharp.Abstraction.Infrastructures.Events;
public interface IEventSubscriber
{
Task SubscribeAsync(string channel, Func<string, string, Task> received);
Task SubscribeAsync(string channel, string group, bool priorityEnabled, Func<string, string, Task> received);
}