Files
amane-tanikaze-dcbot/commands/tests/test.ts
2024-10-13 14:50:19 +00:00

10 lines
313 B
TypeScript

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();