Actions are now loaded together with all plugins. Called the LoadPlugins at startup

This commit is contained in:
2024-06-08 19:17:15 +03:00
parent 9a8ddb5388
commit d9d5c05313
14 changed files with 148 additions and 236 deletions

View File

@@ -9,7 +9,7 @@ using DiscordBotCore.Others;
namespace DiscordBotCore.Bot;
public class Boot
public class App
{
/// <summary>
/// The bot prefix
@@ -41,7 +41,7 @@ public class Boot
/// </summary>
/// <param name="botToken">The bot token</param>
/// <param name="botPrefix">The bot prefix</param>
public Boot(string botToken, string botPrefix)
public App(string botToken, string botPrefix)
{
this.BotPrefix = botPrefix;
this.BotToken = botToken;