initial commit

This commit is contained in:
2024-10-13 14:50:19 +00:00
commit dbdbf16bfe
34 changed files with 3035 additions and 0 deletions

10
commands/tests/test.ts Normal file
View File

@@ -0,0 +1,10 @@
import {CommandInteraction} from 'discord.js';
import {Command} from '../../classes/command';
class Test extends Command{
get name(){return "test";}
get description(){return "Testing some features.";}
async execute(interaction: CommandInteraction): Promise<void>{}
};
// export const command = new Test();