9 lines
265 B
C#
9 lines
265 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, Func<string, string, Task> received);
|
||
|
|
}
|