aboutsummaryrefslogtreecommitdiff
path: root/src/utils/register-commands-on-guild.ts
diff options
context:
space:
mode:
authorSon <[email protected]>2024-04-28 19:11:38 -0400
committerGitHub <[email protected]>2024-04-28 18:11:38 -0500
commite0dfd8c9fd14cb6b644d0f426e891fa6603916ab (patch)
tree5f9a1399e2cabb38c321c93b96e5b16e5ddf1bca /src/utils/register-commands-on-guild.ts
parent75d2714ff26254386abbf0ab9a76156d75d15e3c (diff)
downloadmuse-e0dfd8c9fd14cb6b644d0f426e891fa6603916ab.tar.xz
muse-e0dfd8c9fd14cb6b644d0f426e891fa6603916ab.zip
Fix ERR_MODULE_NOT_FOUND for constants file (#1023)
Co-authored-by: Max Isom <[email protected]>
Diffstat (limited to 'src/utils/register-commands-on-guild.ts')
-rw-r--r--src/utils/register-commands-on-guild.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/register-commands-on-guild.ts b/src/utils/register-commands-on-guild.ts
index ebd94e4..b2e9145 100644
--- a/src/utils/register-commands-on-guild.ts
+++ b/src/utils/register-commands-on-guild.ts
@@ -1,6 +1,6 @@
import {REST} from '@discordjs/rest';
import {Routes} from 'discord-api-types/v10';
-import Command from '../commands';
+import Command from '../commands/index.js';
interface RegisterCommandsOnGuildOptions {
rest: REST;