Files
nadekobot/src/NadekoBot/Common/ModuleBehaviors/ILateExecutor.cs
2021-12-29 06:07:16 +01:00

9 lines
227 B
C#

namespace NadekoBot.Common.ModuleBehaviors;
/// <summary>
/// Last thing to be executed, won't stop further executions
/// </summary>
public interface ILateExecutor
{
Task LateExecute(IGuild guild, IUserMessage msg);
}