modmail/structure/commands/Ping.js

13 lines
189 B
JavaScript
Raw Normal View History

2021-06-18 15:41:57 +02:00
const Command = require('../Command');
class Ping extends Command {
constructor(client) {
super(client, {
name: 'ping'
});
}
}
module.exports = Ping;