Removed old web ui plugin

This commit is contained in:
2024-08-31 17:27:19 +03:00
parent f7ba5f94ff
commit 30e92b742c
26 changed files with 117 additions and 620 deletions

View File

@@ -0,0 +1,7 @@
namespace DiscordBotWebUI.StartupActions;
internal interface IStartupAction
{
string Command { get; }
void RunAction(string[] args);
}