NadekoBot/NadekoBot.Core/Common/ModuleBehaviors/IINputTransformer.cs
2017-09-30 00:46:33 +02:00

11 lines
249 B
C#

using System.Threading.Tasks;
using Discord;
namespace NadekoBot.Common.ModuleBehaviors
{
public interface IInputTransformer
{
Task<string> TransformInput(IGuild guild, IMessageChannel channel, IUser user, string input);
}
}