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

13 lines
333 B
C#

namespace NadekoBot.Common.ModuleBehaviors;
/// <summary>
/// All services which need to execute something after
/// the bot is ready should implement this interface
/// </summary>
public interface IReadyExecutor
{
/// <summary>
/// Executed when bot is ready
/// </summary>
public Task OnReadyAsync();
}