2020-11-28 16:38:23 +00:00
|
|
|
module.exports.meta = {
|
|
|
|
name: 'test',
|
|
|
|
aliases: ['t'],
|
|
|
|
staffOnly: false
|
|
|
|
}
|
|
|
|
|
2020-12-27 12:59:54 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @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');
|
|
|
|
}
|