aboutsummaryrefslogtreecommitdiff
path: root/commands/git.js
blob: f43fcf4b43ffaa361eb1dca79d1867e9a58fc0ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports.run = async (client, message) => {
  message.author.send('I can see you want to contribute to this project.\nHere\'s the link: https://github.com/AleeCorp/AleeBot');
};

exports.conf = {
  aliases: [],
  guildOnly: true,
};
exports.help = {
  name: 'git',
  description: 'Get the git info.',
  usage: 'git',
  category: '- General Commands',
};