mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
- Removed IUnloadableService - Started removing INService (removed it from services which implement behavior interfaces) - wip - Added scrutor for better service registration - wip
14 lines
320 B
C#
14 lines
320 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(ICommandContext context, string moduleName, CommandInfo command);
|
|
}
|
|
}
|