Files
nadekobot/src/Nadeko.Bot.Common/ModuleBehaviors/IReadyExecutor.cs

13 lines
345 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 : IBehavior
{
/// <summary>
/// Executed when bot is ready
/// </summary>
public Task OnReadyAsync();
}