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