External commands

This commit is contained in:
2024-05-21 21:33:42 +03:00
parent a5e65a5ea5
commit 4c8fd1a672
3 changed files with 36 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace DiscordBot
{
internal interface IStartupAction
{
string Command { get; init; }
Action<string[]> RunAction { get; init; }
}
}