11 lines
271 B
C#
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();
|
|
}
|
|
}
|