elliebot/src/EllieBot/_common/IBot.cs

12 lines
276 B
C#
Raw Normal View History

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