mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
13 lines
449 B
C#
13 lines
449 B
C#
#nullable disable
|
|
namespace NadekoBot.Services;
|
|
|
|
public interface IBehaviourExecutor
|
|
{
|
|
public Task<bool> RunEarlyBehavioursAsync(SocketGuild guild, IUserMessage usrMsg);
|
|
public Task<string> RunInputTransformersAsync(SocketGuild guild, IUserMessage usrMsg);
|
|
Task<bool> RunLateBlockersAsync(ICommandContext context, CommandInfo cmd);
|
|
Task RunLateExecutorsAsync(SocketGuild guild, IUserMessage usrMsg);
|
|
|
|
public void Initialize();
|
|
}
|