summaryrefslogtreecommitdiff
path: root/commands/git.js
blob: 9e5d4bef170cb5739aac85aaf77f5679f972e8f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const Discord = require('discord.js');
exports.run =  (client, message, args, config) => {
    message.channel.send ("Here's the github repo: https://github.com/AleeCorp/AleeBot");
}
exports.conf = {
  enabled: true,

  guildOnly: false,

  aliases: [],

  permLevel: 0

};

exports.help = {

  name: 'git',

  description: 'Tells you the repository of AleeBot.',

  usage: 'git'

};