NadekoBot/NadekoBot.Core/Common/ModuleBehaviors/IINputTransformer.cs

11 lines
249 B
C#
Raw Normal View History

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