forked from Galactic/modmail
13 lines
189 B
JavaScript
13 lines
189 B
JavaScript
const Command = require('../Command');
|
|
|
|
class Ping extends Command {
|
|
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'ping'
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Ping; |