mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
10 lines
265 B
C#
10 lines
265 B
C#
namespace NadekoBot.Common;
|
|
|
|
public interface IPubSub
|
|
{
|
|
public Task Pub<TData>(in TypedKey<TData> key, TData data)
|
|
where TData : notnull;
|
|
|
|
public Task Sub<TData>(in TypedKey<TData> key, Func<TData, ValueTask> action)
|
|
where TData : notnull;
|
|
} |