aboutsummaryrefslogtreecommitdiff
path: root/src/commands/invitebot.js
blob: 7e8709b4f0142f40a3825da4e4db13a83dc57b34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports.run = async (client, message) => {
    message.author.send('Want AleeBot in your server? Here\'s the link: https://discordapp.com/oauth2/authorize?client_id=282547024547545109&permissions=68185158&scope=bot');
  };
  
  exports.conf = {
    aliases: [],
    guildOnly: false,
  };
  exports.help = {
    name: 'invitebot',
    description: 'Invite AleeBot to your server.',
    usage: 'invitebot',
    category: '- General Commands',
  };