1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 01:21:56 +00:00
musix-oss/commands/invite.js
2019-08-04 16:00:05 +03:00

13 lines
426 B
JavaScript

module.exports = {
name: 'invite',
description: 'Invite command.',
cooldown: 5,
execute(message, args, client, RichEmbed) {
const embed = new RichEmbed()
.setTitle('Commands for Musix!')
.url('https://bit.ly/2YDrKgh')
.setAuthor(client.user.username, client.user.displayAvatarURL)
.setColor('#b50002')
return message.channel.send(embed);
}
};