Skip to content

Commit

Permalink
fix: missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
DestroyCom committed Oct 13, 2023
1 parent b0e9e48 commit a54171d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/commands/slashCommands/queue.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { CommandInteraction, SlashCommandBuilder, TextChannel } from 'discord.js';
import { client } from 'src/Bot';
import i18n from 'src/config/i18n';
import { fetchGuild } from 'src/database/queries/guilds/get';

import { queueCommand } from '../textCommands';
Expand Down
1 change: 1 addition & 0 deletions src/commands/slashCommands/redo.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { CommandInteraction, SlashCommandBuilder, TextChannel } from 'discord.js';
import { client } from 'src/Bot';
import i18n from 'src/config/i18n';
import { fetchGuild } from 'src/database/queries/guilds/get';

import { redoCommand } from '../textCommands';
Expand Down
1 change: 1 addition & 0 deletions src/commands/slashCommands/remove.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { CommandInteraction, SlashCommandBuilder, TextChannel } from 'discord.js';
import { client } from 'src/Bot';
import i18n from 'src/config/i18n';
import { fetchGuild } from 'src/database/queries/guilds/get';

import { removeCommand } from '../textCommands';
Expand Down
1 change: 1 addition & 0 deletions src/commands/slashCommands/resume.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { CommandInteraction, SlashCommandBuilder, TextChannel } from 'discord.js';
import { client } from 'src/Bot';
import i18n from 'src/config/i18n';
import { fetchGuild } from 'src/database/queries/guilds/get';

import { resumeCommand } from '../textCommands';
Expand Down
1 change: 1 addition & 0 deletions src/commands/slashCommands/skip.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { CommandInteraction, SlashCommandBuilder, TextChannel } from 'discord.js';
import { client } from 'src/Bot';
import i18n from 'src/config/i18n';
import { fetchGuild } from 'src/database/queries/guilds/get';

import { skipCommand } from '../textCommands';
Expand Down

0 comments on commit a54171d

Please sign in to comment.