Files
claude-code/src/commands/add-dir/index.ts
claude-code-best f90eee85d8 feat: build
2026-03-31 19:22:47 +08:00

12 lines
260 B
TypeScript

import type { Command } from '../../commands.js'
const addDir = {
type: 'local-jsx',
name: 'add-dir',
description: 'Add a new working directory',
argumentHint: '<path>',
load: () => import('./add-dir.js'),
} satisfies Command
export default addDir