discord_bot/commands/info/invite.js
2022-01-18 09:33:58 +01:00

10 lines
No EOL
292 B
JavaScript

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