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