refactor(discord-bot): improve project structure

This commit is contained in:
2025-12-03 17:36:02 +01:00
parent 252ca07c0e
commit 1c2dcbab34
16 changed files with 514 additions and 516 deletions

View File

@@ -0,0 +1,9 @@
import type { Command } from "~/commands";
import { getLatestQuest } from "~/services/wov";
import { askForGrinders } from "~/utils/quest";
export const resultCommand: Command = async (message, args) => {
const client = message.client;
const quest = await getLatestQuest();
await askForGrinders(quest, client);
};