mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
9 lines
227 B
C#
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);
|
|
} |