import { CacheType, ChatInputCommandInteraction, SlashCommandBuilder } from 'discord.js'; import { msg_play } from '../messages'; const name = "queue" function register() { return new SlashCommandBuilder() .setName(name) .setDescription('Shows queue') } async function execute(interaction: ChatInputCommandInteraction) { await interaction.deferReply() await interaction.editReply(msg_play()); } export default { name, register, execute }