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