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