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