aboutsummaryrefslogtreecommitdiff
path: root/commands/contribute.js
blob: b6a2d6f919e4dd5859fd3150bf1285b1cf4d78cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
exports.run = (bot, msg) => {
  msg.channel.send('Want to help the bot? Here you go: https://github.com/PokeWorld/PokeBot.');
};

exports.conf = {
  aliases: [],
  guildOnly: true,
};

exports.help = {
  name: 'contribute',
  description: 'Contributing to the bot.',
  category: 'Information',
};