11 lines
249 B
C#
Raw Normal View History

2017-07-17 21:42:36 +02:00
using System.Threading.Tasks;
using Discord;
2017-05-30 01:53:16 +02:00
2017-07-17 21:42:36 +02:00
namespace NadekoBot.Common.ModuleBehaviors
2017-05-30 01:53:16 +02:00
{
public interface IInputTransformer
{
Task<string> TransformInput(IGuild guild, IMessageChannel channel, IUser user, string input);
}
}