modmail/structure/commands/Ping.js

17 lines
244 B
JavaScript
Raw Normal View History

2021-06-18 15:41:57 +02:00
const Command = require('../Command');
class Ping extends Command {
2021-10-22 09:35:04 +02:00
constructor (client) {
2021-06-18 15:41:57 +02:00
super(client, {
name: 'ping'
});
}
2021-10-22 09:35:04 +02:00
async execute () {
2021-06-19 22:41:51 +02:00
return `PONG!`;
}
2021-06-18 15:41:57 +02:00
}
module.exports = Ping;