chaosbot/ChaosBot/Services/ProgrammingLanguageInterpreter/IProgrammingLanguageInterpreter.cs

11 lines
287 B
C#

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