Newer
Older
cortex-hub / CaudeCodeSourceCode / cc-recovered-main / src / commands / memory / index.ts
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