Files
nadekobot/src/NadekoBot/_common/IBot.cs
2024-04-27 16:03:48 +00:00

12 lines
278 B
C#

#nullable disable
using NadekoBot.Db.Models;
namespace NadekoBot;
public interface IBot
{
IReadOnlyList<ulong> GetCurrentGuildIds();
event Func<GuildConfig, Task> JoinedGuild;
IReadOnlyCollection<GuildConfig> AllGuildConfigs { get; }
bool IsReady { get; }
}