typo not importing utils right

This commit is contained in:
Aster Fialla
2026-02-22 09:54:01 -05:00
parent 57336b4e58
commit d4adbc028a
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import {enums} from "./enums.js";
import {commands} from "./commands.js"; import {commands} from "./commands.js";
import {webhookHelper} from "./helpers/webhookHelper.js"; import {webhookHelper} from "./helpers/webhookHelper.js";
import * as env from 'dotenv'; import * as env from 'dotenv';
import {utils} from "./helpers/utils"; import {utils} from "./helpers/utils.js";
env.config(); env.config();

View File

@@ -2,7 +2,7 @@ import {database} from '../database.js';
import {enums} from "../enums.js"; import {enums} from "../enums.js";
import {EmptyResultError, Op} from "sequelize"; import {EmptyResultError, Op} from "sequelize";
import {EmbedBuilder} from "@fluxerjs/core"; import {EmbedBuilder} from "@fluxerjs/core";
import {utils} from "./utils"; import {utils} from "./utils.js";
const mh = {}; const mh = {};