Version 0.1.0 - Mise en place de Discord.js

This commit is contained in:
2025-02-23 13:54:07 +01:00
parent cb206ffa22
commit b054c8a316
19 changed files with 2465 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
const { Command } = require('../Command');
const { Embed } = require('../Embed');
const command = new Command("web", "Affiche le lien vers le site web pour contrôler le bot", (client, interaction) => {
const embed = new Embed()
embed.setColor(0xffffff)
embed.setTitle('Subsonics - Chopin')
embed.addBotPicture(client)
embed.addField('Lien',"https://subsonics.raphix.fr/")
embed.send(interaction)
})
module.exports = {command}