Files
nadekobot/NadekoBot.Core/Common/ModuleBehaviors/IReadyExecutor.cs
2021-09-06 21:29:22 +02:00

16 lines
402 B
C#

using System.Threading.Tasks;
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();
}
}