11 lines
296 B
C#
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);
|
|
}
|
|
}
|