namespace NadekoBot.Common.ModuleBehaviors; /// /// Implemented by modules which block execution before anything is executed /// public interface IEarlyBehavior { int Priority { get; } Task RunBehavior(IGuild guild, IUserMessage msg); }