modmail/structure/commands/Ping.js
2021-10-22 10:35:04 +03:00

17 lines
244 B
JavaScript

const Command = require('../Command');
class Ping extends Command {
constructor (client) {
super(client, {
name: 'ping'
});
}
async execute () {
return `PONG!`;
}
}
module.exports = Ping;