mirror of
https://github.com/anthropics/claude-code.git
synced 2026-09-14 19:48:39 +08:00
11 lines
284 B
TypeScript
11 lines
284 B
TypeScript
import Names from '../names'
|
|
|
|
/**
|
|
* What `session.start` hands `$.command.register`: the one place the
|
|
* `/diff` spec is built, where a later CommandSpec field joins.
|
|
*/
|
|
export const COMMAND_SPEC = {
|
|
name: Names.COMMAND_NAME,
|
|
description: Names.COMMAND_DESCRIPTION,
|
|
} as const
|