mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
10 lines
No EOL
208 B
C#
10 lines
No EOL
208 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, ulong userId) => null;
|
|
} |