Files
claude-code/src/commands/memory/index.ts
nirholas 161e98ba38 ✈️ index.ts
2026-03-31 10:22:51 +00:00

12 lines
221 B
TypeScript

import type { Command } from '../../commands.js'
const memory: Command = {
type: 'local-jsx',
name: 'memory',
description: 'Edit Claude memory files',
load: () => import('./memory.js'),
}
export default memory