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