mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
Restructured folders and project names, ci should be fixed
This commit is contained in:
14
src/NadekoBot/Common/ModuleBehaviors/ILateBlocker.cs
Normal file
14
src/NadekoBot/Common/ModuleBehaviors/ILateBlocker.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user