mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
15 lines
360 B
C#
15 lines
360 B
C#
using System.Threading.Tasks;
|
|
using Discord.Commands;
|
|
using Discord.WebSocket;
|
|
|
|
namespace NadekoBot.Common.ModuleBehaviors
|
|
{
|
|
public interface ILateBlocker
|
|
{
|
|
public int Priority { get; }
|
|
|
|
Task<bool> TryBlockLate(DiscordSocketClient client, ICommandContext context,
|
|
string moduleName, CommandInfo command);
|
|
}
|
|
}
|