chaosbot/ChaosBot/Services/ProgrammingLanguageInterpreter/IProgrammingLanguageInterpreter.cs

11 lines
296 B
C#

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