obama-bot/commands/test.js
2020-11-28 17:38:23 +01:00

9 lines
213 B
JavaScript

module.exports.meta = {
name: 'test',
aliases: ['t'],
staffOnly: false
}
module.exports.run = async (message, args) => {
message.channel.send('cool, your test worked. i hope you\'re happy now');
}