forked from Galactic/modmail
17 lines
236 B
JavaScript
17 lines
236 B
JavaScript
const Command = require('../Command');
|
|
|
|
class Ping extends Command {
|
|
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'ping'
|
|
});
|
|
}
|
|
|
|
execute() {
|
|
return `PONG!`;
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Ping; |