Files
xiao/commands/single/hello-world.js
T
2021-03-21 11:35:15 -04:00

17 lines
322 B
JavaScript

const Command = require('../../structures/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!');
}
};