mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
6 lines
184 B
C#
6 lines
184 B
C#
namespace NadekoBot.Common.ModuleBehaviors;
|
|
|
|
public interface IInputTransformer
|
|
{
|
|
Task<string> TransformInput(IGuild guild, IMessageChannel channel, IUser user, string input);
|
|
} |