8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import { createChatCommand } from '@/commands';
|
|
|
|
export default createChatCommand({
|
|
name: 'test1', description: 'Test command 1' },
|
|
async () => {},
|
|
);
|
|
|