mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 14:06:57 +10:00
12 lines
258 B
TypeScript
12 lines
258 B
TypeScript
import type { Command } from '../../commands.js'
|
|
|
|
const ide = {
|
|
type: 'local-jsx',
|
|
name: 'ide',
|
|
description: 'Manage IDE integrations and show status',
|
|
argumentHint: '[open]',
|
|
load: () => import('./ide.js'),
|
|
} satisfies Command
|
|
|
|
export default ide
|