Newer
Older
cortex-hub / CaudeCodeSourceCode / cc-recovered-main / src / commands / theme / index.ts
import type { Command } from '../../commands.js'

const theme = {
  type: 'local-jsx',
  name: 'theme',
  description: 'Change the theme',
  load: () => import('./theme.js'),
} satisfies Command

export default theme