mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
10 lines
No EOL
194 B
C#
10 lines
No EOL
194 B
C#
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;
|
|
} |