using System.Threading.Tasks;
using Discord;
namespace NadekoBot.Common.ModuleBehaviors
{
///
/// Implemented by modules which block execution before anything is executed
///
public interface IEarlyBlocker
{
Task TryBlockEarly(IGuild guild, IUserMessage msg);
}
}