tested & working basic bot

This commit is contained in:
Darius
2025-09-27 16:12:50 +02:00
parent 44f3f7af0b
commit 10eee0c0fd
16 changed files with 161 additions and 127 deletions

View File

@@ -1,7 +1,9 @@
import { Collection } from "@discordjs/collection";
import { SongCommand } from "./command-song.ts";
import { SongCommand } from "./impl/song.ts";
import type { ICommand } from "./interface.ts";
export const commands = new Collection<string, ICommand>();
commands.set(SongCommand.name, new SongCommand());
const songCommand = new SongCommand();
commands.set(songCommand.name, songCommand);