obama-bot/commands/test.js

9 lines
213 B
JavaScript
Raw Normal View History

2020-11-28 16:38:23 +00:00
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');
}