blob: 8f9f18a326ea3a5f810337f538024269570075e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
module.exports.run = async (client, message) => {
message.channel.send ("Here's the github repo: https://github.com/Alee14/Oswald/");
};
exports.conf = {
aliases: [],
guildOnly: false,
};
exports.help = {
name: 'git',
description: 'Shows the repo of Oswald.',
usage: 'git',
category: '- General Commands',
};
|