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