Removed the WebUI. Removed the Modules

This commit is contained in:
2024-10-30 23:10:04 +02:00
parent f8df0f0254
commit 9e8bfbbe16
2133 changed files with 120 additions and 15581 deletions

View File

@@ -1,20 +0,0 @@
namespace DiscordBotWebUI.StartupActions.Actions;
public class UpdateCleanup : IStartupAction
{
public string Command => "update-cleanup";
public void RunAction(string[] args)
{
List<string> files = new List<string>();
files.AddRange(Directory.GetFiles("./"));
foreach (var file in files)
{
if (file.EndsWith(".bak"))
File.Delete(file);
}
Directory.Delete("temp");
}
}