From 003a838fadef7eda0d8eee4f3f31dc40d034b0d7 Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Thu, 28 Apr 2022 02:19:44 +0300 Subject: [PATCH] bs --- src/structure/client/Resolver.js | 2 +- src/structure/interfaces/Component.js | 2 +- src/structure/interfaces/commands/Command.js | 2 +- src/structure/interfaces/commands/SlashCommand.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/structure/client/Resolver.js b/src/structure/client/Resolver.js index 5c4f131..41dd4c5 100644 --- a/src/structure/client/Resolver.js +++ b/src/structure/client/Resolver.js @@ -1,6 +1,6 @@ const timestring = require('timestring'); // eslint-disable-next-line no-unused-vars -const { DiscordClient } = require('../DiscordClient'); +// const { DiscordClient } = require('../DiscordClient'); // eslint-disable-next-line no-unused-vars const Component = require('../interfaces/Component'); const { Constants: { InfractionResolves } } = require('../../constants'); diff --git a/src/structure/interfaces/Component.js b/src/structure/interfaces/Component.js index 1653d33..8985e68 100644 --- a/src/structure/interfaces/Component.js +++ b/src/structure/interfaces/Component.js @@ -1,5 +1,5 @@ // eslint-disable-next-line no-unused-vars -const { DiscordClient } = require("../DiscordClient"); +// const { DiscordClient } = require("../DiscordClient"); class Component { diff --git a/src/structure/interfaces/commands/Command.js b/src/structure/interfaces/commands/Command.js index 6288d5d..3709f2c 100644 --- a/src/structure/interfaces/commands/Command.js +++ b/src/structure/interfaces/commands/Command.js @@ -1,7 +1,7 @@ const { MessageEmbed } = require('discord.js'); // eslint-disable-next-line no-unused-vars -const { DiscordClient } = require('../../DiscordClient.js'); +// const { DiscordClient } = require('../../DiscordClient.js'); const Component = require('../Component.js'); const CommandOption = require('../CommandOption.js'); diff --git a/src/structure/interfaces/commands/SlashCommand.js b/src/structure/interfaces/commands/SlashCommand.js index ac93fc1..7743a38 100644 --- a/src/structure/interfaces/commands/SlashCommand.js +++ b/src/structure/interfaces/commands/SlashCommand.js @@ -1,7 +1,7 @@ const Command = require('./Command.js'); const { Commands: CommandsConstant } = require('../../../constants/'); // eslint-disable-next-line no-unused-vars -const { DiscordClient } = require('../../DiscordClient.js'); +// const { DiscordClient } = require('../../DiscordClient.js'); class SlashCommand extends Command {