mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 18:28:27 -04:00
8 lines
206 B
C#
8 lines
206 B
C#
namespace NadekoBot.Common.ModuleBehaviors;
|
|
|
|
public interface ILateBlocker
|
|
{
|
|
public int Priority { get; }
|
|
|
|
Task<bool> TryBlockLate(ICommandContext context, string moduleName, CommandInfo command);
|
|
} |