Global usings and file scoped namespaces

This commit is contained in:
Kwoth
2021-12-19 05:14:11 +01:00
parent bc31dae965
commit ee33313519
548 changed files with 47528 additions and 49115 deletions

View File

@@ -1,13 +1,11 @@
using System.Threading.Tasks;
using Discord.Commands;
using Discord.WebSocket;
namespace NadekoBot.Common.ModuleBehaviors
namespace NadekoBot.Common.ModuleBehaviors;
public interface ILateBlocker
{
public interface ILateBlocker
{
public int Priority { get; }
public int Priority { get; }
Task<bool> TryBlockLate(ICommandContext context, string moduleName, CommandInfo command);
}
}
Task<bool> TryBlockLate(ICommandContext context, string moduleName, CommandInfo command);
}