🚚 correct more paths

This commit is contained in:
Axel Olausson Holtenäs 2022-10-20 11:01:01 +02:00
parent 051d122729
commit 4c92867bcf
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
import { SlashCommandBuilder } from "@discordjs/builders";
import { ChatInputCommandInteraction } from "discord.js";
import modules from "../commands/counters/modules";
import modules from "./modules";
export const builder = new SlashCommandBuilder()
.setName("counters")

View file

@ -2,7 +2,7 @@ import { SlashCommandBuilder } from "@discordjs/builders";
import { ChatInputCommandInteraction } from "discord.js";
import logger from "../../middlewares/logger";
import modules from "../commands/fun/modules";
import modules from "./modules";
export const builder = new SlashCommandBuilder()
.setName("fun")

View file

@ -3,7 +3,7 @@ import { SlashCommandBuilder } from "@discordjs/builders";
import { ChatInputCommandInteraction } from "discord.js";
// Groups
import modules from "../commands/manage/modules";
import modules from "./modules";
export const moduleData = modules;