chaosbot/ChaosBot/Services/ProgrammingLanguageInterpreter/IProgrammingLanguageInterpreter.cs
2020-09-26 18:27:24 +02:00

11 lines
271 B
C#

using Discord.Commands;
namespace ChaosBot.Services.ProgrammingLanguageInterpreter
{
public interface IProgrammingLanguageInterpreter
{
string Interpret(SocketCommandContext context, string content, string command);
void StopExecution();
}
}