const { SlashCommandBuilder, EmbedBuilder } = require("discord.js"); const { __glob } = require("../modules/global-variables"); const { LogType } = require("../modules/sub-log"); const { List } = require("../modules/sub-list"); const subplayer = require(__glob.SUBPLAYER); const packageJson = require(__glob.PACKAGE); module.exports = { data: new SlashCommandBuilder() .setName("previous") .setDescription("[NEW] Revenir à la chanson précédente."), async execute(client, interaction) { subplayer.previous(client, interaction) } }