refactor: fix stale imports

This commit is contained in:
syntaxbullet
2026-01-08 16:39:34 +01:00
parent f92415b89c
commit 017f5ad818
20 changed files with 29 additions and 32 deletions

View File

@@ -15,7 +15,7 @@ const event: Event<Events.MessageCreate> = {
levelingService.processChatXp(message.author.id);
// Activity Tracking for Lootdrops
import("@/modules/economy/lootdrop.service").then(m => m.lootdropService.processMessage(message));
import("@shared/modules/economy/lootdrop.service").then(m => m.lootdropService.processMessage(message));
},
};

View File

@@ -10,7 +10,7 @@ const event: Event<Events.ClientReady> = {
schedulerService.start();
// Handle post-update tasks
const { UpdateService } = await import("@/modules/admin/update.service");
const { UpdateService } = await import("@shared/modules/admin/update.service");
await UpdateService.handlePostRestart(c);
},
};