modmail/structure/commands/Ping.js

17 lines
242 B
JavaScript

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