ravenbotv14/commands/general/tmoji.js

13 lines
302 B
JavaScript
Raw Normal View History

2022-09-24 17:06:19 +00:00
const { EmbedBuilder } = require('discord.js');
const { getEmoji, getAllEmoji, getThemes } = require('random-text-meme');
module.exports = {
name: "tmoji",
description: "Returns a random Text Emoji",
run: async (client, interaction) => {
await interaction.editReply(getEmoji());
},
};