refactor(discord-bot): improve project structure

This commit is contained in:
Pihkaal
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,5 @@
import type { Command } from "~/commands";
export const pingCommand: Command = async (message, args) => {
await message.reply("pong");
};