PluralKit/PluralKit.Bot/Handlers/IEventHandler.cs
2021-08-27 11:03:47 -04:00

13 lines
247 B
C#

using System.Threading.Tasks;
using Myriad.Gateway;
namespace PluralKit.Bot
{
public interface IEventHandler<in T> where T : IGatewayEvent
{
Task Handle(Shard shard, T evt);
ulong? ErrorChannelFor(T evt) => null;
}
}