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