using System.Threading; using Discord.Commands; namespace ChaosBot.Services.ProgrammingLanguageInterpreter { public interface IProgrammingLanguageInterpreter { string Interpret(CancellationToken ct, SocketCommandContext context, string content, string command); } }