using System.Threading.Tasks; using Discord; using Discord.WebSocket; namespace NadekoBot.Common.ModuleBehaviors { /// /// Last thing to be executed, won't stop further executions /// public interface ILateExecutor { Task LateExecute(DiscordSocketClient client, IGuild guild, IUserMessage msg); } }