1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-01-07 03:14:48 +00:00
musix-oss/src/commands/invite.js
2024-02-10 09:33:59 +02:00

18 lines
467 B
JavaScript

const { EmbedBuilder } = require("discord.js");
module.exports = {
name: 'invite',
alias: ["i"],
usage: '',
description: 'Invite Musix.',
permission: 'none',
category: 'info',
execute(msg, args, client, command) {
const embed = new EmbedBuilder()
.setTitle(client.messages.inviteTitle)
.setURL(client.config.invite)
.setColor(client.config.embedColor)
msg.channel.send(embed);
}
};