mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 16:26:58 +10:00
11 lines
220 B
TypeScript
11 lines
220 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
|