oops forgot to turn on linter

This commit is contained in:
Emily 2022-12-12 12:25:48 +11:00
parent bd38870c44
commit 823c1d4de8
9 changed files with 103 additions and 103 deletions

View file

@ -1,12 +1,12 @@
const Command = require("../../base/Command.js");
const Command = require('../../base/Command.js');
const replies = require('../../assets/replies.json');
module.exports = class Ping extends Command {
constructor (name, category) {
super (name, category)
super (name, category);
this.name = name,
this.description = 'Check response time between Woomy and Discord',
this.category = category
this.category = category;
}
async run (client, interaction, data) { //eslint-disable-line no-unused-vars