discord_bot/commands/info/invite.js
2022-02-24 01:29:17 +01:00

10 lines
No EOL
299 B
JavaScript

module.exports = {
name: 'invite',
description: 'Returns invite link for the bot',
execute({message, client}){
const inviteLink = client.generateInvite({
scopes: ['applications.commands', 'bot'],
});
message.channel.send(`<${inviteLink}>`)
}
}