9 lines
213 B
JavaScript
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');
|
|
} |