diff options
| author | Alee <alee14498@gmail.com> | 2018-04-20 17:49:37 -0400 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-04-20 17:49:37 -0400 |
| commit | c4ef0d5d72dd47b76e39fa91a7552c19c8120ad8 (patch) | |
| tree | 6077983d7e178343f841b3eb5b95b66f70b563bf /commands/git.js | |
| parent | 325f2ee581cd96d1d1812e95812bb6ea9f9606bc (diff) | |
| download | Oswald-c4ef0d5d72dd47b76e39fa91a7552c19c8120ad8.tar.gz Oswald-c4ef0d5d72dd47b76e39fa91a7552c19c8120ad8.tar.bz2 Oswald-c4ef0d5d72dd47b76e39fa91a7552c19c8120ad8.zip | |
Diffstat (limited to 'commands/git.js')
| -rw-r--r-- | commands/git.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/commands/git.js b/commands/git.js new file mode 100644 index 0000000..8f9f18a --- /dev/null +++ b/commands/git.js @@ -0,0 +1,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', +};
\ No newline at end of file |
