Improved web ui

This commit is contained in:
2024-10-23 20:06:36 +03:00
parent c2dc01cbbb
commit cfcfecd4bc
19 changed files with 271 additions and 197 deletions

View File

@@ -6,7 +6,6 @@ using System.Reflection;
namespace DiscordBot;
public static class Entry
{
/// <summary>
@@ -46,7 +45,7 @@ public static class Entry
\___ \ / _ \ __| '_ \ | | | | / __|/ __/ _ \| '__/ _` | | _ < / _ \| __|
____) | __/ |_| | | | | |__| | \__ \ (_| (_) | | | (_| | | |_) | (_) | |_
|_____/ \___|\__|_| |_| |_____/|_|___/\___\___/|_| \__,_| |____/ \___/ \__|
(Console Application)
";
public static void Main(string[] args)

View File

@@ -65,7 +65,7 @@ public class Program
var token = Application.CurrentApplication.ApplicationEnvironmentVariables.Get<string>("token");
var prefix = Application.CurrentApplication.ApplicationEnvironmentVariables.Get<string>("prefix");
DiscordBotApplication discordApp = new (token, prefix);
var discordApp = new DiscordBotApplication(token, prefix);
await discordApp.StartAsync();
}
catch (Exception ex)