Files
xiao/commands/single/hello-world.js
T
Dragon Fire c61ae11679 Fix
2021-06-05 12:50:41 -04:00

17 lines
321 B
JavaScript

const Command = require('../../framework/Command');
module.exports = class HelloWorldCommand extends Command {
constructor(client) {
super(client, {
name: 'hello-world',
group: 'single',
memberName: 'hello-world',
description: 'Hello world!'
});
}
run(msg) {
return msg.say('Hello, world!');
}
};