Files
nadekobot/NadekoBot.Core/Common/ModuleBehaviors/IINputTransformer.cs
2021-09-06 21:29:22 +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);
}
}