Files
star-kitten/packages/discord/fixtures/commands/test1.command.ts
2025-10-06 23:31:31 -04:00

9 lines
282 B
TypeScript

import type { CommandHandler } from '@/commands/command-handler.type';
const handler: CommandHandler<{ name: string; type: 1; description: string }> = {
definition: { name: 'test1', type: 1, description: 'Test command 1' },
execute: async () => {},
};
export default handler;