obama-bot/commands/test.js

14 lines
294 B
JavaScript
Raw Normal View History

2020-11-28 16:38:23 +00:00
module.exports.meta = {
name: 'test',
aliases: ['t'],
staffOnly: false
}
/**
*
* @param {Discord.Message} message
* @param {Array<string>} args
*/
2020-11-28 16:38:23 +00:00
module.exports.run = async (message, args) => {
message.channel.send('cool, your test worked. i hope you\'re happy now');
}