diff --git a/src/Web/Commands/Emojify.cs b/src/Web/Commands/Emojify.cs new file mode 100644 index 0000000..de4a5a4 --- /dev/null +++ b/src/Web/Commands/Emojify.cs @@ -0,0 +1,37 @@ +using Geekbot.Core.Converters; +using Geekbot.Interactions; +using Geekbot.Interactions.ApplicationCommand; +using Geekbot.Interactions.Request; +using Geekbot.Interactions.Response; + +namespace Geekbot.Web.Commands; + +public class Emojify : InteractionBase +{ + private struct Options + { + public const string Text = "text"; + } + + public override Command GetCommandInfo() => new () + { + Name = "emojify", + Description = "Transcribe text into emojis", + Type = CommandType.ChatInput, + Options = new List