This commit is contained in:
Jan 2020-12-23 13:38:31 +01:00
parent c15e5b4d01
commit f50de3e481

11
commands/info.js Normal file
View file

@ -0,0 +1,11 @@
const Discord = require('discord.js');
module.exports.meta = {
name: 'info',
aliases: ['about'],
staffOnly: false
}
module.exports.run = async (message, args) => {
message.channel.send('h');
}