mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 10:18:27 -04:00
11 lines
274 B
C#
11 lines
274 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NadekoBot.Common
|
|
{
|
|
public interface IPubSub
|
|
{
|
|
public Task Pub<TData>(in TypedKey<TData> key, TData data);
|
|
public Task Sub<TData>(in TypedKey<TData> key, Func<TData, ValueTask> action);
|
|
}
|
|
} |