mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
13 lines
345 B
C#
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();
|
|
} |